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

18 lines
272 B
D

// PERMUTE_ARGS:
// EXTRA_FILES: imports/test68a.d
// https://issues.dlang.org/show_bug.cgi?id=4278
import imports.test68a;
class Foo : OtherModuleClass
{
override void foo()
{
super.foo();
}
}
void main()
{
new Foo();
}