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

12 lines
209 B
D

// EXTRA_SOURCES: imports/test17181a.d imports/test17181b.d
module test17181;
import imports.test17181a;
int foo()
{
return imports.test17181a.abc(1);
}
static this() { assert(a == 2); }
void main() {}