Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / test_s.c
CommitLineData
951c7801
C
1int main () {
2 if (x-one) {
3 one();
4 }
5 if (x-two) {
6 one();
7 two();
8 }
9 if (x-three) {
10 one();
11 two();
12 three();
13 }
14 if (two) {
15 while (x) {
16 one();
17 }
18 while (x) {
19 one();
20 two();
21 }
22 }
23 if (one) {
24 while (x) {
25 one();
26 }
27 }
28 if (three) {
29 while (x) {
30 one();
31 }
32 while (x) {
33 one();
34 two();
35 }
36 while (x) {
37 one();
38 two();
39 }
40 }
41}