permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / befS.res
1 int main () {
2 foo();
3 xxx();
4 foo();
5 if(y) {
6 foo();
7 {
8 foo();
9 rrr();
10 }
11 }
12 }
13
14 int main () {
15 foo();
16 xxx();
17 foo();
18 if(y) {
19 foo();
20 rrr();
21 }
22 }
23
24
25 int d() {}
26
27 int main2 () {
28 foo();
29 yyy();
30 foo();
31 xxx();
32 }