/* 20011223-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif /* Origin: Joseph Myers . */ /* Case labels in a switch statement are converted to the promoted type of the controlling expression, not an unpromoted version. Reported as PR c/2454 by Andreas Krakowczyk . */ static int i; void testTortureExecute (void) { i = -1; switch ((signed char) i) { case 255: ASSERT (0); default: return; } }