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

// accepts-valid with DMD0.120. volatile as well as synchronized

void main()
{
    int i = 1;
    synchronized int i = 2; // should fail to compile
}