(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
imports/
link11395a.d
module imports.link11395a;

struct SA
{
    bool flag;
    int[] nums;

    bool opEquals(bool b) { return flag == b; }
}

struct SB
{
    int num;
    SA sa;
}