OSDN Git Service

2009-11-28 Kai Tietz <kai.tietz@onevision.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / c99-init-4.c
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" } */
6
7 struct s { char *p; };
8 struct s a[1] = { { .p = ((char []){ 1, 2 }) } };