dmd/compiler/test/compilable/must_use_assign.d
2022-07-09 18:53:07 +02:00

9 lines
85 B
D

import core.attribute;
@mustuse struct S {}
void test()
{
S a, b;
a = b;
}