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