coccinelle release 0.2.5
[bpt/coccinelle.git] / tests / null_bool.res
CommitLineData
c3e37e97
C
1int 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