mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
13 lines
119 B
D
13 lines
119 B
D
module nested3;
|
|
|
|
void main()
|
|
{
|
|
int i;
|
|
void test()
|
|
{
|
|
i = 3;
|
|
}
|
|
test();
|
|
assert(i == 3);
|
|
}
|