Coccinelle release 1.0.0-rc1
[bpt/coccinelle.git] / tests / labels_metastatement.res
... / ...
CommitLineData
1int 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}