summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/array-const-3.c
blob: b7089284f8cd201fdd036768d742e8f805224288 (plain)
1
2
3
4
5
6
7
8
9
/* 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 -pedantic-errors" } */

extern int i;
int a[] = { [1 ? 1 : i] = 0 }; /* { dg-error "array index in initializer is not an integer constant expression" } */
/* { dg-message "near initialization" "near init" { target *-*-* } .-1 } */