summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/must_use_opassign.d
blob: 8e877dd69b6d3dd4594193dc770ec580dd82ec40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import core.attribute;

@mustuse struct S
{
    ref S opAssign(S rhs) return
    {
        return this;
    }
}

void test()
{
    S a, b;
    a = b;
}