re PR tree-optimization/45919 (ICE: SIGSEGV in fold_ctor_reference (tree-ssa-ccp...
[gcc.git] / 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 }