Release coccinelle-0.2.2
[bpt/coccinelle.git] / tests / na.c
1 #define FOO 10
2
3 void foo()
4 {
5 int i;
6
7 if (!i & FOO) return;
8 !i & -FOO;
9 !i & !FOO;
10 !i & 100;
11 !i & -100;
12 !i & !100;
13 }