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

extern int i;
enum e { E = (1 ? 1 : i) }; /* { dg-error "not an integer constant expression" } */