blob: d42b324ee9b3f79d7d009322cf737aa7a7033f64 [file] [log] [blame]
/+
TEST_OUTPUT:
---
fail_compilation/must_use_union.d(15): Error: ignored value of `@mustuse` type `must_use_union.U`; prepend a `cast(void)` if intentional
---
+/
import core.attribute;
@mustuse union U {}
U fun() { return U(); }
void test()
{
fun();
}