mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
17 lines
168 B
D
17 lines
168 B
D
module nested2;
|
|
|
|
void func(ref int i)
|
|
{
|
|
delegate {
|
|
assert(i == 3);
|
|
i++;
|
|
}();
|
|
}
|
|
|
|
void main()
|
|
{
|
|
int i = 3;
|
|
func(i);
|
|
assert(i == 4);
|
|
}
|