Release coccinelle-0.1.8
[bpt/coccinelle.git] / tests / badzero.res
1 int main () {
2 int *x;
3 int *y;
4 int z;
5 if (y - x == 0) return;
6 if ((y - x) == 0) return;
7 if (27) return;
8 if (27) return;
9 }
10