modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/layout.c (about) 1 struct foo 2 { 3 char a; 4 }; 5 6 foo () 7 { 8 struct foo bar[3]; 9 bar[0].a = '0'; 10 bar[1].a = '1'; 11 bar[2].a = '2'; 12 foof (bar); 13 }