Release coccinelle-0.2.2-rc1
[bpt/coccinelle.git] / tests / null_bool.res
1 int main () {
2 if (12 != NULL) return;
3 if (a && 12 != NULL && b) return;
4 if (12) return;
5 if (a && 12 && b) return;
6 x = x + 20;
7 }
8