mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
19 lines
229 B
D
19 lines
229 B
D
// COMPILE_SEPARATELY:
|
|
// EXTRA_SOURCES: imports/link8023b.d
|
|
// PERMUTE_ARGS: -inline -release
|
|
|
|
import imports.link8023b;
|
|
|
|
private void t(alias Code)()
|
|
{
|
|
return Code();
|
|
}
|
|
|
|
void f()
|
|
{
|
|
t!( () { } )();
|
|
}
|
|
|
|
void main() {
|
|
f();
|
|
}
|