permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / posiso.res
1 int main () {
2 int *x;
3 if (!x) x = a; else x = b;
4 if (x == a) x = a; else x = b;
5 if (!x) x = a;
6 if (x == a) x = a;
7 }
8
9