summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/must_use_suppress.d
blob: 63ad75c2928df65495b47e23f60acfd1f40983cd (plain)
1
2
3
4
5
6
7
8
9
10
import core.attribute;

@mustuse struct S {}

S fun() { return S(); }

void test()
{
    cast(void) fun();
}