blob: 38c727b6e49c48563ce752f9858e629b4de0d215 [file] [log] [blame]
struct NullableRef15292(T)
{
inout(T) get() inout
{
assert(false);
}
alias get this;
}
struct S15292
{
NullableRef15292!S15292 n;
}
void main()
{
S15292 s;
assert(s == s);
}