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

18 lines
139 B
D

// REQUIRED_ARGS:
// PERMUTE_ARGS:
union U
{
bool a;
long b;
}
U test1()
{
return U();
}
U* test2()
{
return new U();
}