1 /* PR tree-optimization/45919 */ 2 3 const struct S { int a; int b[]; } s = { 0, { 0 }}; 4 5 int foo(void)6 foo (void) 7 { 8 return s.b[0]; 9 } 10