permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / test1.c
CommitLineData
34e49164
C
1void main(int foo) {
2
3 f(1);
4 x();
5 g(2);
6 x();
7 if(1) {
8 // h(3);
9 h(3);
10 } else {
11 h(4);
12 }
13
14
15}
16