| 1 | int f(int num) |
| 2 | { |
| 3 | if (num > 0) |
| 4 | return num; |
| 5 | else |
| 6 | do { |
| 7 | return num; |
| 8 | } while(0); |
| 9 | |
| 10 | if (num > 0) |
| 11 | do { |
| 12 | return num; |
| 13 | } while(0); |
| 14 | else |
| 15 | return num; |
| 16 | } |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected