OSDN Git Service

* c-common.c (c_common_reswords): Add _Static_assert for C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / gnu89-init-4.c
1 /* Test for GNU extensions to compound literals are giving the correct array bounds */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu89 -W -Wall -O2" } */
4
5 int a[] = (int[4]){1, 1, 2};
6 int f(void)
7 {
8   int sum = 0; int i;
9   for(i = 0;i<4;i++)
10     sum = a[i];
11   return sum;
12 }