(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
ice13968.d
// REQUIRED_ARGS:
// PERMUTE_ARGS:

union U
{
    bool a;
    long b;
}

U test1()
{
    return U();
}

U* test2()
{
    return new U();
}