Created attachment 232
infinite loop, allocate an array of AA
Comment #2 by smjg — 2008-11-20T13:28:48Z
As for your second question, I'm not sure that there's a general way. But
mapsp = (new int[int][1]).ptr;
should work once the underlying bug is fixed. Meanwhile, a workaround is
int[int][1] mapsa;
mapsp = mapsa.dup.ptr;
But since the main bug you're reporting has already been reported and voted on, I'm marking this as a dupe.
*** This bug has been marked as a duplicate of 929 ***