mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
13 lines
159 B
D
13 lines
159 B
D
module mini.delegate2;
|
|
|
|
void main()
|
|
{
|
|
int foo = 42;
|
|
int bar()
|
|
{
|
|
return foo;
|
|
}
|
|
int delegate() dg = &bar;
|
|
assert(dg() == foo);
|
|
}
|