coccinelle release 1.0.0-rc2
[bpt/coccinelle.git] / tests / video2.cocci
CommitLineData
34e49164 1@@
faf9a90c 2identifier x;
34e49164
C
3expression E, E1, E2;
4@@
5
6main(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}