Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / case-const-3.c
blob7224cca47d7dd30a8e63f4b989623dd70e74a5ad
1 /* Test for case labels not integer constant expressions but folding
2 to integer constants (used in Linux kernel, PR 39613). */
3 /* { dg-do compile } */
4 /* { dg-options "-pedantic-errors" } */
6 extern int i;
7 void
8 f (int c)
10 switch (c)
12 case (1 ? 1 : i): /* { dg-error "case label is not an integer constant expression" } */