(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
ice13886.d
// REQUIRED__ARGS:
// PERMUTE_ARGS:

struct Y()
{
    this() {}
    ~this() { this = null; }
    ref opAssign(S)(S) { }
}

void main()
{
    static if (is(typeof({ Y!(); }))) {}
}