OSDN Git Service

PR c++/19797
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / anonunion1.C
1 // PR debug/9039
2 // Verify that the debugging backends don't get confused by ALIAS_DECLs.
3
4 int foo()
5 {
6   union
7   {
8     int z;
9     unsigned int w;
10   };
11
12   w = 0;
13   return 0;
14 }