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

19 lines
198 B
D

/*
EXTRA_SOURCES: imports/Other.d
PERMUTE_ARGS:
RUN_OUTPUT:
---
Same
other
---
*/
module Same; // makes no difference if removed
import core.stdc.stdio;
class Same
{
this()
{
printf("Same\n");
}
}