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

--- Comment #7 from Rainer Schuetze <r.sagita...@gmx.de> ---
I just noticed that in this code:

int test(int n)
{
        switch(n)
        {
        case -1:
                int b = -1;
        mixin("case 0:");
                int x = 1;
                return x;
        case 1:
                int y = 2;
                return y;
        default:
                return -1;
        }
}

The scope of b extends until the end of `case 0`, too.

--

Reply via email to