Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / tests / expopt4.cocci
CommitLineData
34e49164
C
1//@ rule1 @
2//expression E;
3//@@
4//
5// xxx(E);
6
7
8@ r @
9type T;
10//expression rule1.E;
11expression E;
12@@
13
14(
15- f((T) E)
16+ foo()
17|
18- f(E)
19+ bar()
20)