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

@mustuse struct S
{
    ref S opUnary(string op)() return
    {
        return this;
    }
}

void test()
{
    S s;
    ++s;
    --s;
    s++;
    s--;
}