modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/BUG24.c (about) 1 struct ack { 2 char a, b, c; 3 }; 4 5 main() 6 { 7 struct ack bad; 8 9 foo(bad); 10 } 11 12 foo(c) 13 struct ack c; 14 { 15 }