| 61 | } |
| 62 | |
| 63 | int Fun2() |
| 64 | { |
| 65 | Test t; |
| 66 | Test* t2; |
| 67 | |
| 68 | int x = 2; |
| 69 | |
| 70 | ++x; |
| 71 | |
| 72 | if(x) { |
| 73 | Test y{}; |
| 74 | return 3; |
| 75 | } |
| 76 | |
| 77 | if(x % 2) { |
| 78 | return 3; |
| 79 | } else { |
| 80 | ++x; |
| 81 | } |
| 82 | |
| 83 | ++x; |
| 84 | |
| 85 | return 3; |
| 86 | } |
nothing calls this directly
no outgoing calls
no test coverage detected