import core.attribute;
@mustuse struct S
{
    ref S opAssign(S rhs) return
    {
        return this;
    }
}
void test()
{
    S a, b;
    a = b;
}
import core.attribute;
@mustuse struct S
{
    ref S opAssign(S rhs) return
    {
        return this;
    }
}
void test()
{
    S a, b;
    a = b;
}