permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / cr.cocci
CommitLineData
34e49164
C
1@@
2identifier x;
3expression E1, E2, E3;
4@@
5
6- x = request_region(E1,E2,E3);
7 <...
8- if (...) {
9- ... when != release_region(E1,E2);
10- return ...;
11- }
12 ...>
13?- release_region(E1,E2);