modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/pr45919.c (about) 1 /* PR tree-optimization/45919 */ 2 3 const struct S { int a; int b[]; } s = { 0, { 0 }}; 4 5 int 6 foo (void) 7 { 8 return s.b[0]; 9 }