modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.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 }