rt_gccstream/gcc/testsuite/gcc.dg/enum-const-3.c

9 lines
348 B
C

/* 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" } */