permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / na.c
CommitLineData
d6a55602
C
1#define FOO 10
2
3void 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}