Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / tests / test6.c
1 int i;
2
3 void main()
4 {
5 /* a comment */
6
7 f(4) + f(5);
8
9 //f(f(3)); // if uncomment, should have the warning "already minused token"
10 if(f(1))
11 f(1);
12 else
13 f(2);
14
15 if(1)
16 g(1);
17 else
18 g(2);
19 }
20
21
22 void mainbis() {
23 f(10);
24 }
25
26