// 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();
}