mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
16 lines
177 B
D
16 lines
177 B
D
module mini.const1;
|
|
|
|
void* g = cast(void*)&foobar;
|
|
|
|
int foobar()
|
|
{
|
|
return 42;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
auto fn = cast(int function())g;
|
|
int i = fn();
|
|
assert(i == 42);
|
|
}
|