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