[Issue 7900] CTFE Internal error with -inline and associative arrays

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Nov 6 08:41:32 PST 2012


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



--- Comment #6 from Don <clugdbug at yahoo.com.au> 2012-11-06 08:41:27 PST ---
Reduced test case:

class Trie {
    Trie[dchar] children;
}

int bug7900() {
    Trie t = new Trie;
    t.children['='] = new Trie;
    foreach(v; t.children)
       if (v.children.length) {}
    return 1;
}

static assert(bug7900());

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list