Coccinelle release 0.2.5-rc8
[bpt/coccinelle.git] / tests / video2.c
CommitLineData
34e49164
C
1int main(int x) {
2 if (x == 1) {
3 x();
4 if (f()) return 12;
5 if (g(1)) return 15;
6 g(1);
7 g(2);
8 y();
9 if (i()) return 120;
10 g(2);
11 }
12 else if (x == 2) {
13 x();
14 if (f()) return 16;
15 x();
16 y();
17 if (i()) return 160;
18 g(2);
19 }
20 else if (x == 3) {
21 x();
22 if (f()) return 20;
23 x();
24 g(1);
25 y();
26 g(2);
27 }
28 else return 0;
29}