(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr45919.c
       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  }