(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
diag11425.d
/*
TEST_OUTPUT:
---
fail_compilation/diag11425.d(13): Error: variable `x` is shadowing variable `diag11425.main.x`
---
*/

void main()
{
    int x;

    {
        int x = 1;
    }
}