1 2 3 4 5 6 7 8 9 10 11 12 13 14
static void main(void) { static const int foo = 2; switch(foo) { case 1: break; case 2: break; case 1: break; default: break; } }