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



--- Comment #6 from Don <clugd...@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: -------

Reply via email to