comparison gcc/testsuite/gcc.dg/enum-const-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Test for enumeration constants not integer constant expressions but
2 folding to integer constants (used in Linux kernel,
3 <http://gcc.gnu.org/ml/gcc/2009-04/msg00677.html>). */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
6
7 extern int i;
8 enum e { E = (1 ? 1 : i) };