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