modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/20040707-1.c (about) 1 struct s { char c1, c2; }; 2 void foo (struct s s) 3 { 4 static struct s s1; 5 s1 = s; 6 } 7 int main () 8 { 9 static struct s s2; 10 foo (s2); 11 exit (0); 12 }