modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/931110-1.c (about) 1 typedef struct 2 { 3 short f:3, g:3, h:10; 4 } small; 5 6 struct 7 { 8 int i; 9 small s[10]; 10 } x; 11 12 main () 13 { 14 int i; 15 for (i = 0; i < 10; i++) 16 x.s[i].f = 0; 17 exit (0); 18 }