1 // PR debug/9039
2 // Verify that the debugging backends don't get confused by ALIAS_DECLs.
3 
foo()4 int foo()
5 {
6   union
7   {
8     int z;
9     unsigned int w;
10   };
11 
12   w = 0;
13   return 0;
14 }
15