[Issue 16523] [ICE] Internal error: backend/symbol.c 1031

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Wed Sep 21 15:08:11 PDT 2016


https://issues.dlang.org/show_bug.cgi?id=16523

--- Comment #1 from b2.temp at gmx.com ---
The culprit is the local variable, as shown by this reduction

void main()
{
    int i;
    switch(i)
    {
        int j;
        case j:{}
        default: break;
    }
}

which produces the same error.

--


More information about the Digitalmars-d-bugs mailing list