summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/diag11425.d
blob: 16c99cc411686c7477d984096b12e3af2caa437f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
TEST_OUTPUT:
---
fail_compilation/diag11425.d(13): Error: variable x is shadowing variable diag11425.main.x
---
*/

void main()
{
    int x;

    {
        int x = 1;
    }
}