coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / switchtest.c
CommitLineData
fc1ad971
C
1void f(void)
2{
3switch (2)
4 {
5 int x;
6 int y;
7 case 2: i++;
8 break;
9
10 case 4: j++;
11 break;
12
13 }
14}