Release coccinelle-0.2.3rc6
[bpt/coccinelle.git] / tests / if.cocci
CommitLineData
1be43e12
C
1@exists@
2expression x;
3statement S1,S2;
4@@
5
6f(x);
7+ after();
8 ... when != true x == NULL || ...
9g(x);
10+ after();
11
12@exists@
13expression x;
14statement S1,S2;
15@@
16
17+before();
18f(x);
19 ... when != false x == NULL || ...
20+before();
21g(x);