digitalmars.D - Resizing array of AA's -- known bug?
- Bill Baxter (12/12) Oct 02 2008 Is this a known bug?
- bearophile (4/5) Oct 03 2008 I'm waiting for it to be fixed so I can remove about 100-150 lines of sp...
Is this a known bug? void main() { int[int][] crazybug; writefln("before"); crazybug.length = 5; writefln("after"); // never gets here } DMD 1.035. It's so basic that I would expect someone to have run across it before, but I couldn't find it in bugzilla. --bb
Oct 02 2008
Bill Baxter:Is this a known bug?I'm waiting for it to be fixed so I can remove about 100-150 lines of special-cased code from my libs, so it's a painfully well known bug. Bye, bearophile
Oct 03 2008