* objc.dg/desig-init-2.m: New test.

From-SVN: r90459
This commit is contained in:
Joseph Myers 2004-11-10 22:44:24 +00:00 committed by Joseph Myers
parent 0676d23702
commit 3f8882a200
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-11-10 Joseph S. Myers <joseph@codesourcery.com>
* objc.dg/desig-init-2.m: New test.
2004-11-10 Adam Nemet <anemet@lnxw.com>
PR middle-end/18160

View File

@ -0,0 +1,7 @@
/* Test handling of C99 designator lists in Objective-C. Test array
designators after structure member designators. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
struct s { int a[2]; } x = { .a[0] = 1 };