Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / incompatible_value.cocci
CommitLineData
34e49164
C
1@ r1 @
2expression E;
3identifier fn;
4@@
5fn(...) {
6 <...
7 f(E)
8 ...>
9 }
10
11
12@@
13expression r1.E;
14@@
15
16- g(E)
17+ h(E)
18
19
20