mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
213 B
D
11 lines
213 B
D
// EXTRA_SOURCES: imports/testmod2a.d
|
|
|
|
/**********************************/
|
|
// https://issues.dlang.org/show_bug.cgi?id=1904
|
|
|
|
import imports.testmod2a;
|
|
void main()
|
|
{
|
|
void whatever() {}
|
|
foo!(whatever)();
|
|
}
|