(x: i32, y: i32, z: i32)
| 1 | pub fn sploosh(x: i32, y: i32, z: i32) -> i32 { |
| 2 | match (x, y, z) { |
| 3 | (x, _, _) if x < 0 => 99, |
| 4 | (1, 2, 3) => 4, |
| 5 | (5, 6, 7) => 3, |
| 6 | (x, y, z) => x + y - z, |
| 7 | } |
| 8 | } |
| 9 | |
| 10 | pub fn splish(a: i32, b: i32) -> i32 { |
| 11 | -a + 3 * b |
nothing calls this directly
no outgoing calls
no test coverage detected