1struct s { char c1, c2; };
2void foo (struct s s)
3{
4  static struct s s1;
5  s1 = s;
6}
7int main ()
8{
9  static struct s s2;
10  foo (s2);
11  exit (0);
12}
13