| 38 | } |
| 39 | |
| 40 | void Fun() |
| 41 | { |
| 42 | Test t; |
| 43 | Test* t2; |
| 44 | |
| 45 | int x = 2; |
| 46 | |
| 47 | ++x; |
| 48 | |
| 49 | if(x) { |
| 50 | Test y{}; |
| 51 | return; |
| 52 | } |
| 53 | |
| 54 | if(x % 2) { |
| 55 | return; |
| 56 | } else { |
| 57 | ++x; |
| 58 | } |
| 59 | |
| 60 | ++x; |
| 61 | } |
| 62 | |
| 63 | int Fun2() |
| 64 | { |
nothing calls this directly
no outgoing calls
no test coverage detected