October 03, 2008
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
October 03, 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