(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test10073.d
struct Arr(T)
{
    T[] dArr;
    alias dArr this;
    bool opEquals(Arr!T d)
    {
        foreach (idx, it; d)
        {
            if (this[idx] != it)
            {
                return false;
            }
        }
        return true;
    }
}

class Bar
{
    Arr!Foo fooQ;
}

class Foo {}    // NG