mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
29 lines
348 B
D
29 lines
348 B
D
/*
|
|
EXTRA_SOURCES: imports/testminitAA.d imports/testminitBB.d
|
|
PERMUTE_ARGS:
|
|
RUN_OUTPUT:
|
|
---
|
|
AA
|
|
BB
|
|
hello
|
|
Success
|
|
---
|
|
*/
|
|
|
|
import core.stdc.stdio;
|
|
|
|
import imports.testminitAA;
|
|
private import imports.testminitBB;
|
|
|
|
static this()
|
|
{
|
|
printf("hello\n");
|
|
assert(aa == 1);
|
|
assert(bb == 1);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
printf("Success\n");
|
|
return 0;
|
|
}
|