Release coccinelle-0.2.3rc6
[bpt/coccinelle.git] / tests / badzero.res
CommitLineData
708f4980
C
1int 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