permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / posiso.res
CommitLineData
34e49164
C
1int 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