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

13 lines
180 B
D

// COMPILE_SEPARATELY:
// EXTRA_SOURCES: imports/link13394a.d
module link13394;
import imports.link13394a;
void main()
{
auto b = new B();
auto s = S();
s.func();
}