rt_gccstream/gcc/testsuite/g++.dg/debug/anonunion1.C

15 lines
175 B
C

// PR debug/9039
// Verify that the debugging backends don't get confused by ALIAS_DECLs.
int foo()
{
union
{
int z;
unsigned int w;
};
w = 0;
return 0;
}