Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
debug
/
anonunion1.C
blob: c48a8cdc131667d8b09af5ac23eb9236876b2b0b [
file
] [
log
] [
blame
]
// 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
;
}