http://d.puremagic.com/issues/show_bug.cgi?id=7810
--- Comment #9 from Don <[email protected]> 2012-10-01 06:17:47 PDT --- Further reduced shows it's a problem with void initialized static arrays. I have a fix. int bug7810() { int[1][3] x = void; x[0] = [2]; x[1] = [7]; assert(x[0][0] == 2); return 1; } static assert(bug7810()); -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
