aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/array-const-1.c
blob: 0e0c46224cf0fec18e135dc24ca83be9979bf55b (plain)
1
2
3
4
5
6
7
8
/* Test for array designators not integer constant expressions but
   folding to integer constants (used in Linux kernel,
   <http://gcc.gnu.org/ml/gcc/2009-04/msg00611.html>).  */
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */

extern int i;
int a[] = { [1 ? 1 : i] = 0 };