(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.dg/
imports/
gdc27.d
module imports.gdc27;

interface I_A
{
    bool a();
}

class C_A : I_A
{
    bool a()
    {
        return false;
    }
}