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