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