OSDN Git Service

* gcc.dg/dfp/func-array.c: Support -DDBG to report individual failures.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / init-desig-obs-2.c
1 /* Test obsolete forms of designated initializers.  Test with
2    -pedantic.  */
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu99 -pedantic" } */
6 struct s { int a; };
7 struct s s0 = { .a = 1 };
8 struct s s1 = { a: 1 }; /* { dg-warning "warning: obsolete use of designated initializer with ':'" } */
9
10 int x0[] = { [0] = 1 };
11 int x1[] = { [0] 1 }; /* { dg-warning "warning: obsolete use of designated initializer without '='" } */