(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test16013a.d
// https://issues.dlang.org/show_bug.cgi?id=16013

struct Impl { S _payload; } /* Only this line has changed from above. */

struct RefCounted
{
    void opAssign(RefCounted rhs) {}
    void opAssign(S rhs) {}
    S refCountedPayload() { return S.init; }
    alias refCountedPayload this;
}

struct S { RefCounted s; }