| 21 | } |
| 22 | |
| 23 | int main() |
| 24 | { |
| 25 | const int fact = factorial(4); |
| 26 | const float factFloat = factorialFloat(4); |
| 27 | |
| 28 | const int d = dummy(4); |
| 29 | int fact2 = factorial(4); |
| 30 | int fact3 = factorial(fact2); |
| 31 | int fact4 = factorial(fact); |
| 32 | |
| 33 | float f = Get(); |
| 34 | const float f2 = Get(); |
| 35 | |
| 36 | return fact + d + factFloat + fact2 + fact3 + fact4; |
| 37 | } |
nothing calls this directly
no test coverage detected