dmd/compiler/test/runnable/testmod1.d
2022-07-09 18:53:07 +02:00

13 lines
170 B
D

// COMPILE_SEPARATELY:
// EXTRA_SOURCES: imports/testmod1a.d imports/testmod1b.d
// PERMUTE_ARGS:
struct Foo(T) {
void foo(T arg) { }
}
int main()
{
return 0;
}