(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test68.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();
}