mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
10 lines
94 B
D
10 lines
94 B
D
void main()
|
|
{
|
|
void foo() {}
|
|
|
|
auto dg = &foo;
|
|
|
|
if(dg.funcptr is null)
|
|
{ assert(0); }
|
|
}
|