Release coccinelle-0.2.1-rc1
[bpt/coccinelle.git] / tests / labels_metastatement.res
1 int foo(int i) {
2
3 if(1) {{
4 x = 3; foo();
5 z = 4; foo();
6 } foo(); } // we dont want that it add both foo on the } and on the endif
7 // (note: but need correct endif accrochage)
8 foo();
9
10 }