Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / tests / null_bool.c
CommitLineData
c3e37e97
C
1int 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