dmd/compiler/test/fail_compilation/fail285.d
2022-07-09 18:53:07 +02:00

21 lines
235 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail285.d(19): Error: with symbol `fail285.S.x` is shadowing local symbol `fail285.main.x`
---
*/
struct S
{
int x;
}
void main()
{
int x;
S s;
with (s)
{
x++;
}
}