coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / break.cocci
1 @@
2 @@
3
4 while(...) {
5 <...
6 foo();
7 + bar();
8 break;
9 ...>
10 }
11
12 @@
13 @@
14
15 while(...) {
16 <...
17 xxx();
18 + bar();
19 continue;
20 ...>
21 }