blob: 05eebc4adc4959d70278c16f6a3c89c4fdc6536d [file] [log] [blame]
// REQUIRED__ARGS:
// PERMUTE_ARGS:
struct Y()
{
this() {}
~this() { this = null; }
ref opAssign(S)(S) { }
}
void main()
{
static if (is(typeof({ Y!(); }))) {}
}