blob: a2d3bece666d97ad641fd235fceb6c684be40bfb [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 case 1:
10 break;
11 default:
12 break;
13 }
14}