blob: 389b1c1e326361ed7ea4f1835451bfe870e55682 [file] [log] [blame]
Eric Biederman83b991a2003-10-11 06:20:25 +00001static 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}