2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / testsuite / objc.dg / desig-init-2.m
blobcf8e0c1c3a9950cab5663ff15c54b85e7099180a
1 /* Test handling of C99 designator lists in Objective-C.  Test array
2    designators after structure member designators.  */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99" } */
7 struct s { int a[2]; } x = { .a[0] = 1 };