blob: 0176354ed1d7596b9b7bf945da351fc5d0194157 [file] [log] [blame]
import core.attribute;
@mustuse struct S
{
ref S opOpAssign(string op)(S rhs) return
{
return this;
}
}
void test()
{
S a, b;
a += b;
}