Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr41282.c
blob: 3a0f02d63ab10219658fbc83e214c4a25c4ddfe5 [
file
] [
log
] [
blame
]
struct
S
{
unsigned
int
iu
;
};
union
U
{
struct
S s
;
signed
int
is
;
};
extern
signed
int
bar
();
struct
S foo
(
void
)
{
union
U u
;
u
.
is
=
bar
();
return
u
.
s
;
}