blob: b9ad2941be78869b5d1443188918aa255e592aa1 [file] [log] [blame]
/*
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
}