Files
c3c/test/test_suite/union/union_member_voidcast.c3
2021-05-18 17:23:27 +02:00

13 lines
106 B
Plaintext

module test;
union Xu
{
void *b;
}
func Xu foo()
{
Xu a;
a.b = (void*)(123);
return a;
}