(f: fn(i32, i32) -> i32, a: i32, b: i32)
| 93 | } |
| 94 | |
| 95 | fn combine(f: fn(i32, i32) -> i32, a: i32, b: i32) -> i32 { |
| 96 | f(a, b) + f(b, a) |
| 97 | } |
| 98 | |
| 99 | fn choose_int_op(addition: bool) -> fn(i32, i32) -> i32 { |
| 100 | if addition { |
nothing calls this directly
no outgoing calls
no test coverage detected