permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / type_annotated.res
1 void f1(int z) {
2
3 struct foo i;
4 struct foo2 j;
5 int k;
6
7 j+i.newfoo+j.foo;
8
9 }
10
11
12
13 void f2(struct foo i) {
14
15 struct foo2 j;
16 int k;
17
18 j+i.newfoo+j.foo;
19
20 }