Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / if.c
1 int main () {
2 f(x);
3 g(x);
4 }
5
6 int main1 () {
7 f(x);
8 if (x == NULL) {
9 g(x);
10 }
11 }
12
13 int main1 () {
14 f(x);
15 while (x == NULL) {
16 if (q == 3) {
17 g(x);
18 }
19 }
20 x = 6;
21 }
22 int main2 () {
23 f(x);
24 if (x == NULL || y == 2) {
25 g(x);
26 }
27 }
28