Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20040707-1.c
blob: 6fc15cc24a7c4dae0b6b8d44fd5780654043ea32 [
file
] [
log
] [
blame
]
struct
s
{
char
c1
,
c2
;
};
void
foo
(
struct
s s
)
{
static
struct
s s1
;
s1
=
s
;
}
int
main
()
{
static
struct
s s2
;
foo
(
s2
);
exit
(
0
);
}