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);
}