Release coccinelle-0.1.8
[bpt/coccinelle.git] / tests / test9.cocci
1 @@
2 identifier func; // work with local function ? with function ?
3 expression X,Y;
4 @@
5
6 func(...) {
7 ...
8 f(X);
9 ...
10 - h(Y);
11 + h(X, Y);
12 ...
13 }