permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / test9.c
1 void main(int foo) {
2
3 f(1);
4 // f(1); // if uncoment then problems
5 g(2);
6 if(1) {
7 h(3);
8 } else {
9 h(4);
10 }
11
12 // if uncomment then problems
13 {
14 i++;
15 }
16
17 }
18