[Issue 4864] ICE(statement.c) Crash on invalid 'if statement' body inside mixin

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4864 Don clugd...@yahoo.com.au changed: What|Removed |Added Keywords||patch CC|

[Issue 5229] New: Inaccurate parsing of floating-point literals

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5229 Summary: Inaccurate parsing of floating-point literals Product: D Version: D1 D2 Platform: All OS/Version: All Status: NEW Keywords: wrong-code Severity: normal

[Issue 3827] automatic joining of adjacent strings is bad

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3827 --- Comment #22 from Stewart Gordon s...@iname.com 2010-11-17 03:58:08 PST --- (In reply to comment #21) doesn't this solve that problem? a ~ (this ~ that) It does. My point was that somebody might accidentally not add the brackets. --

[Issue 5229] Inaccurate parsing of floating-point literals

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5229 Don clugd...@yahoo.com.au changed: What|Removed |Added CC||clugd...@yahoo.com.au ---

[Issue 5219] @noheap annotation

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5219 Don clugd...@yahoo.com.au changed: What|Removed |Added CC||clugd...@yahoo.com.au ---

[Issue 5230] New: ICE(tocsym.c) overriding a method that has an out contract

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5230 Summary: ICE(tocsym.c) overriding a method that has an out contract Product: D Version: D1 D2 Platform: x86 OS/Version: Windows Status: NEW Keywords:

[Issue 5230] ICE(tocsym.c) overriding a method that has an out contract

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5230 Don clugd...@yahoo.com.au changed: What|Removed |Added CC||clugd...@yahoo.com.au ---

[Issue 3031] scoped static var conflicts while linking

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3031 --- Comment #2 from Lukasz Wrzosek luk.wrzo...@gmail.com 2010-11-17 12:12:50 PST --- Created an attachment (id=817) Fix for this bug. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving

[Issue 2056] Const system does not allow certain safe casts/conversions involving deep composite types

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2056 Bruno Medeiros bdom.pub+deeb...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 3889] Forbid null as representation of empty dynamic array

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3889 --- Comment #6 from Sobirari Muhomori dfj1es...@sneakemail.com 2010-11-17 12:23:21 PST --- compare --- foo[]=(cast(Foo[])[])[]; //copy empty array foo[]=(cast(Foo[])null)[]; //copy null slice --- The first line has all 3 meanings of [] --

[Issue 2095] covariance w/o typechecks = bugs

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2095 --- Comment #15 from Bruno Medeiros bdom.pub+deeb...@gmail.com 2010-11-17 12:24:40 PST --- For the record, the same problem also occurs with pointer types: B* ba=[new B()].ptr; A* aa=ba; *aa=new A; (*ba).methodB(); // (*ba) is

[Issue 3889] Forbid null as representation of empty dynamic array

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3889 --- Comment #7 from Sobirari Muhomori dfj1es...@sneakemail.com 2010-11-17 12:26:41 PST --- ps Huh, [] actually has 4 possible meanings, I forgot about either array operation or full slice operator. -- Configure issuemail:

[Issue 5203] dinstaller.exe v2.050 doesn't install anything

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5203 Matthias Pleh matthias.p...@gmx.at changed: What|Removed |Added Component|websites|installer

[Issue 5093] improve error for importing std.c.windows.windows

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5093 simon s.d.hamm...@googlemail.com changed: What|Removed |Added Attachment #816 is|0 |1

[Issue 2056] Const system does not allow certain safe casts/conversions involving deep composite types

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2056 --- Comment #3 from Sobirari Muhomori dfj1es...@sneakemail.com 2010-11-17 14:21:51 PST --- So this is a regression? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because:

[Issue 2095] covariance w/o typechecks = bugs

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2095 --- Comment #16 from bearophile_h...@eml.cc 2010-11-17 15:13:10 PST --- (In reply to comment #14) I'm afraid, there's nothing to test at runtime, Some runtime data info may be added, then. There is already some of it for classes and modules.

[Issue 2095] covariance w/o typechecks = bugs

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2095 Jonathan M Davis jmdavisp...@gmx.com changed: What|Removed |Added CC|

[Issue 5219] @noheap annotation

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5219 --- Comment #2 from bearophile_h...@eml.cc 2010-11-17 15:55:19 PST --- This problem may be solved by a better profiler, or by an alternative to the switch suggested in bug 5070 If this idea is bad then it may be closed. -- Configure

[Issue 2095] covariance w/o typechecks = bugs

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2095 --- Comment #18 from Stewart Gordon s...@iname.com 2010-11-17 16:57:33 PST --- (In reply to comment #17) Really, the only question is whether you can get away with it with some form of const, and I believe that the consensus on it in the

[Issue 5231] New: BigInt lacks a normal toString()

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5231 Summary: BigInt lacks a normal toString() Product: D Version: unspecified Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2

[Issue 5219] @noheap annotation

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5219 nfx...@gmail.com changed: What|Removed |Added CC||nfx...@gmail.com --- Comment #3

[Issue 5232] New: [patch] std.conv.to std.conv.roundTo report invalid overflows for very large numbers

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5232 Summary: [patch] std.conv.to std.conv.roundTo report invalid overflows for very large numbers Product: D Version: D2 Platform: Other OS/Version: Windows Status:

[Issue 5231] BigInt lacks a normal toString()

2010-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5231 bearophile_h...@eml.cc changed: What|Removed |Added CC||bearophile_h...@eml.cc ---