Release coccinelle-0.2.5-rc2
[bpt/coccinelle.git] / tests / retval.res
CommitLineData
978fd7e5
C
1int main () {
2 if (retval1) {
3 foo();
4 return 3;
5 }
6 return 6;
7}
8
9int second () {
10 if (retval1) {
11 foo();
12 goto out;
13 }
14out:
15 return 6;
16}
17
18