mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
21 lines
235 B
D
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++;
|
|
}
|
|
}
|