d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / ice13968.d
blob92f19c217fb45999f9ecd3dbae2043cbb38fc38a
1 // REQUIRED_ARGS:
2 // PERMUTE_ARGS:
4 union U
6 bool a;
7 long b;
10 U test1()
12 return U();
15 U* test2()
17 return new U();