]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/array-const-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / array-const-2.c
CommitLineData
2b6da65c
JM
1/* Test for array designators not integer constant expressions but
2 folding to integer constants (used in Linux kernel,
3 <http://gcc.gnu.org/ml/gcc/2009-04/msg00611.html>). */
4/* { dg-do compile } */
5/* { dg-options "-std=gnu99 -pedantic" } */
6
7extern int i;
8int a[] = { [1 ? 1 : i] = 0 }; /* { dg-warning "array index in initializer is not an integer constant expression" } */
6143c998 9/* { dg-message "near initialization" "near init" { target *-*-* } .-1 } */