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

@mustuse struct S {}

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