(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test12511.d
// EXTRA_FILES: imports/a12511.d
module test12511;

import imports.a12511;

public class B
{
    static void bar()
    {
        A.foo(0);
    }
}

void main()
{}