[Issue 4681] Strange access violation Mandelbug with AAs + Appender

2010-08-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4681 --- Comment #5 from kenn...@gmail.com 2010-08-19 11:46:51 PDT --- Deterministic test case (always crash on my machine): import std.array,std.stdio; void main() { Appender!(uint[])[3] aa; auto x = [ 0,1,1,0,2,1,2,2,1,

[Issue 4681] Strange access violation Mandelbug with AAs + Appender

2010-08-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4681 --- Comment #4 from David Simcha 2010-08-19 11:35:11 PDT --- It's definitely a bug in Appender, not a bug in the runtime or AAs. Replacing 2.048 Appender with 2.047 Appender in array.d and recompiling Phobos and my code makes this bug go away.

[Issue 4681] Strange access violation Mandelbug with AAs + Appender

2010-08-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4681 --- Comment #3 from kenn...@gmail.com 2010-08-19 11:29:49 PDT --- A much shorter test case: import std.random, std.array; void main() { Appender!(int[])[3] aa; foreach(i; 0..1) aa[uniform(0, aa.lengt

[Issue 4681] Strange access violation Mandelbug with AAs + Appender

2010-08-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4681 kenn...@gmail.com changed: What|Removed |Added CC||kenn...@gmail.com --- Comment #2 fr

[Issue 4681] Strange access violation Mandelbug with AAs + Appender

2010-08-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4681 David Simcha changed: What|Removed |Added Priority|P2 |P1 Severity|critical