PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-init-4.c
blob707355785875403b0c3dff6a1bb772517bf8e0db
1 /* Test for nested initialization of a compound literal: must not be
2 checked against outer array bounds. Bug 19435. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
7 struct s { char *p; };
8 struct s a[1] = { { .p = ((char []){ 1, 2 }) } };