mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
180 B
D
12 lines
180 B
D
// COMPILE_SEPARATELY:
|
|
// EXTRA_SOURCES: imports/test27a.d
|
|
// PERMUTE_ARGS:
|
|
|
|
import imports.test27a;
|
|
|
|
int main()
|
|
{
|
|
auto v = new myClass!(int)();
|
|
v.func(5);
|
|
return 0;
|
|
}
|