Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / test6_ver1.c
CommitLineData
34e49164
C
1int i;
2
3void 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
22void mainbis() {
23 f(10);
24}
25
26