Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / metastatement_if.c
1 void main(void)
2 {
3 int i;
4 for (i = 0; i < 10; i++) {
5 printf("%d", i);
6 }
7
8 if (i == 0) {
9 printf("%d", i);
10 }
11
12 }