blob: caf518db041fcaa4fa5b1603b58f84f972e1d14a [file] [log] [blame]
/* PR tree-optimization/45919 */
const struct S { int a; int b[]; } s = { 0, { 0 }};
int
foo (void)
{
return s.b[0];
}