mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
188 B
D
15 lines
188 B
D
// EXTRA_SOURCES: imports/c22a.d imports/c22b.d
|
|
// PERMUTE_ARGS:
|
|
|
|
module main;
|
|
|
|
import imports.c22a;
|
|
import imports.c22b;
|
|
|
|
int main()
|
|
{
|
|
afn1();
|
|
afn2();
|
|
bfn1();
|
|
return 0;
|
|
}
|