mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
10 lines
106 B
D
10 lines
106 B
D
class C { void foo() {} }
|
|
|
|
void main()
|
|
{
|
|
C c = new C;
|
|
void delegate() dlg = &c.foo;
|
|
|
|
assert(dlg);
|
|
}
|