(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
extra-files/
pkgDIP37_10421/
algo/
mod.d
module pkgDIP37_10421.algo.mod;
import pkgDIP37_10421.algo;     // foo
import pkgDIP37_10421.except;   // baz
void test()
{
    foo();  // should be accessible
    baz();  // should be accessible
}