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