mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
261 B
D
16 lines
261 B
D
/+
|
|
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();
|
|
}
|