Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr51761.c
blob: 68911c84ce109405b58e8ca63b0e5e943177efbb [
file
] [
log
] [
blame
]
/* PR middle-end/51761 */
struct
S
{
unsigned
int
len
;
};
struct
S foo
(
struct
S
);
struct
S
bar
(
struct
S x
)
{
return
({
struct
S a
=
x
;
foo
(
a
);
});
}