October 03, 2008
On Thu, Oct 2, 2008 at 11:00 PM, Bill Baxter <wbaxter@gmail.com> wrote:
> 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
>

Your bugzilla-fu is weak, young Baxterwalker.

http://d.puremagic.com/issues/show_bug.cgi?id=929
October 03, 2008
On Fri, Oct 3, 2008 at 12:25 PM, Jarrett Billingsley <jarrett.billingsley@gmail.com> wrote:
> On Thu, Oct 2, 2008 at 11:00 PM, Bill Baxter <wbaxter@gmail.com> wrote:
>> 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
>>
>
> Your bugzilla-fu is weak, young Baxterwalker.
>
> http://d.puremagic.com/issues/show_bug.cgi?id=929
>

Ha ha.  What's really funny is that apparently I added a "this bit me
too" comment to that bug back in May 2007.
Time to add another :-)

--bb