(a: u32, b: u32)
| 5 | |
| 6 | #[no_mangle] |
| 7 | pub extern "C" fn add_u32(a: u32, b: u32) -> u32 { |
| 8 | a + b |
| 9 | } |
| 10 | |
| 11 | #[no_mangle] |
| 12 | pub extern "C" fn add_i64(a: i64, b: i64) -> i64 { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…