[Issue 4469] New: [ICE] function literals class member

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4469 Summary: [ICE] function literals class member Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Severity: normal Priority: P2

[Issue 4470] New: Problems with std.bigint mod and divide

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4470 Summary: Problems with std.bigint mod and divide Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Severity: normal Priority: P2

[Issue 4470] Problems with std.bigint mod and divide

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4470 --- Comment #1 from yebblies yebbl...@gmail.com 2010-07-16 04:49:08 PDT --- The following tests should succeed when this issue has been fixed: unittest { try { scope(success) assert(0); auto r1 = BigInt(6) % BigInt(0);

[Issue 4470] Problems with std.bigint mod and divide

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4470 --- Comment #3 from yebblies yebbl...@gmail.com 2010-07-16 05:02:11 PDT --- This seems to crash with every power of two, int or BigInt. import std.bigint; void main() { foreach(a; 0..1000) { foreach(b; 0..1000) {

[Issue 4471] New: rebindable() helper function

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4471 Summary: rebindable() helper function Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: patch Severity: enhancement Priority: P2

[Issue 4264] Various std.algorithm.map problems

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 yebblies yebbl...@gmail.com changed: What|Removed |Added CC||yebbl...@gmail.com ---

[Issue 4473] New: Migrating to D2 needs operator overloading

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4473 Summary: Migrating to D2 needs operator overloading Product: D Version: D2 Platform: Other URL: http://digitalmars.com/d/2.0/D1toD2.html OS/Version: Windows Status: NEW

[Issue 3155] LDC2 support for druntime

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3155 David Simcha dsim...@yahoo.com changed: What|Removed |Added CC||dsim...@yahoo.com ---

[Issue 1350] delegate inside tuple; wrong values

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1350 Don clugd...@yahoo.com.au changed: What|Removed |Added CC||bugzi...@kyllingen.net ---

[Issue 3047] Foreach on tuple produces incorrect result (D1 only)

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3047 Don clugd...@yahoo.com.au changed: What|Removed |Added Version|2.030 |D1

[Issue 4264] Various std.algorithm.map problems

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #4 from yebblies yebbl...@gmail.com 2010-07-16 21:17:49 PDT --- (In reply to comment #3) But this too doesn't work: import std.algorithm, std.conv, std.range; void main() { auto r1 = map!(to!(string, uint))(iota(20)); }