Coccinelle release 1.0.0-rc4
[bpt/coccinelle.git] / tests / break.res
CommitLineData
34e49164
C
1int main () {
2 while (1) {
3 x = 12;
4 do {
5 x = 15;
6 if (x > 1 ) { foo(); break; }
7 } while (a == 3);
8 if (x > 1 ) { foo(); bar(); break; }
9 if (x > 1 ) { foo(); bar(); break; }
10 }
11}
12
13int mainx () {
14 while (1) {
15 x = 12;
16 do {
17 x = 15;
18 if (x > 1 ) { xxx(); continue; }
19 } while (a == 3);
20 if (x > 1 ) { xxx(); break; }
21 if (x > 1 ) { xxx(); bar(); continue; }
22 }
23}