blob: 92f19c217fb45999f9ecd3dbae2043cbb38fc38a [file] [log] [blame]
// REQUIRED_ARGS:
// PERMUTE_ARGS:
union U
{
bool a;
long b;
}
U test1()
{
return U();
}
U* test2()
{
return new U();
}