permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / b1.res
1 int main () {
2 while (1) {
3 if (x > 1 ) { foo(); bar(); break; }
4 }
5 while (1)
6 if (x > 1 ) { foo(); bar(); break; }
7 }