[Issue 929] New: Resizing array of associative arrays (uint[char[]][]) causes infinite loop / hang

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Feb 3 23:08:53 PST 2007


http://d.puremagic.com/issues/show_bug.cgi?id=929

           Summary: Resizing array of associative arrays (uint[char[]][])
                    causes infinite loop / hang
           Product: D
           Version: 1.004
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: nick.atamas at gmail.com


The following code produces an infinite loop. When executed "before" is printed
but "after" is never reached.

import std.stdio;
int main()
{
        uint[char[]][] fractal;
        writefln("before"); 
        fractal.length = 10;
        writefln("after"); 

        return 0;
}


-- 



More information about the Digitalmars-d-bugs mailing list