Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / tests / video2.cocci
1 @@
2 identifier x;
3 expression E, E1, E2;
4 @@
5
6 main(int x) {
7 <...
8 {
9 ...
10 - x();
11 ...
12 - if (f()) return E1;
13 <...
14 - g(E)
15 + h(E)
16 ...>
17 ?- if (i()) return E2;
18 ...
19 }
20 ...>
21 }