Sign in
gnu
/
gcc.git
/
94edbc153ae4f1c1532859836e528fc480da82d6
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
930603-1.c
blob: 16cd590857303f1535fc8554c37d060f1f0e5de7 [
file
] [
log
] [
blame
]
union
u
{
union
u
*
a
;
double
d
;
};
union
u
*
s
,
g
();
void
f
(
void
)
{
union
u x
=
g
();
s
[
0
]
=
*
x
.
a
;
s
[
1
]
=
g
();
}