ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.test/runnable/Same.d

13 lines
167 B
D

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