[Issue 2884] New: ICE: Assert: 'template.c', line 3773, 'global.errors'

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2884 Summary: ICE: Assert: 'template.c', line 3773, 'global.errors' Product: D Version: 1.041 Platform: PC OS/Version: Windows Status: NEW Severity: normal Priority: P2

[Issue 1010] Abstract class template does not compile when parametrized with char[]

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1010 --- Comment #4 from g...@nwawudu.com 2009-04-23 04:05 --- Example and DStress test cases compile in D1.041. The DStress test cases fail in D2, because the template parameter is declared as a char[] rather than a string. C:\ dmd

[Issue 2882] std.random.MersenneTwisterEngine without no seed

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2882 and...@metalanguage.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 1692] Abstract class dynamic creation bug

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1692 --- Comment #2 from g...@nwawudu.com 2009-04-23 05:01 --- Added example from Bug 2453. abstract class C { } void main() { auto c = cast(C)C.classinfo.create(); assert(c is null); // should pass or classinfo.create should

[Issue 1401] Multiple inheritance of abstract template classes lead to segmentation fault.

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1401 g...@nwawudu.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 1010] Abstract class template does not compile when parametrized with char[]

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1010 --- Comment #5 from clugd...@yahoo.com.au 2009-04-23 04:15 --- (In reply to comment #4) Example and DStress test cases compile in D1.041. The DStress test cases fail in D2, because the template parameter is declared as a char[]

[Issue 2196] Link errors with an abstract class's method implementing an interface

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2196 diggory.ha...@gmail.com changed: What|Removed |Added Status|RESOLVED|CLOSED --- Comment #3

[Issue 2249] DMD can't handle include paths with spaces in them

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2249 --- Comment #2 from free...@mail.ru 2009-04-23 09:39 --- This problem will be fixed in future releases? --

[Issue 2339] Inconsistent behaviour referring to template mixin member at compile time

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2339 --- Comment #2 from matti.niemenmaa+dbugzi...@iki.fi 2009-04-23 09:53 --- I think the problem in the fourth case might be in how it gets parsed. Here's a snippet from the frontend's normally-commented-out printf() and logging calls

[Issue 2249] DMD can't handle include paths with spaces in them

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2249 --- Comment #3 from clugd...@yahoo.com.au 2009-04-23 10:17 --- (In reply to comment #2) This problem will be fixed in future releases? No. Optlink hasn't been changed in a decade, AFAIK; its bugs will probably never get fixed. --

[Issue 1671] associative array comparison fails

2009-04-23 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=1671 --- Comment #1 from cbkbbej...@mailinator.com 2009-04-23 22:52 --- Simpler example: assert([1:1] == [1:1]); // Fails --