2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / debug / anonunion1.C
blobc48a8cdc131667d8b09af5ac23eb9236876b2b0b
1 // PR debug/9039
2 // Verify that the debugging backends don't get confused by ALIAS_DECLs.
4 int foo()
6   union
7   {
8     int z;
9     unsigned int w;
10   };
12   w = 0;
13   return 0;