blob: 1631642fb3eaca06758029dff1ea1fa4a15df5d3 [file] [log] [blame]
// 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();
}