blob: 693efc63bd8408b33b2badf8eac0d140fe89db9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
int foo() {
if ( a )
return 1;
else if ( b )
return 2;
if ( a )
return 3;
else if ( b )
return 4;
else {
a = 5;
return 5;
}
if ( a )
return 6;
else
return 7;
if ( a )
return 8;
if ( b ) {
return 9;
}
if ( b ) {
{ b = 5; }
return 10;
}
if ( a )
return 11;
else {
return 12;
}
if ( a ) {
return 13;
} else if ( b ) {
return 14;
} else {
return 15;
}
}
|