don't mangle the name of this function
()
| 9 | |
| 10 | #[no_mangle] // don't mangle the name of this function |
| 11 | pub extern "C" fn _start() -> ! { |
| 12 | test_main(); |
| 13 | |
| 14 | loop {} |
| 15 | } |
| 16 | |
| 17 | #[panic_handler] |
| 18 | fn panic(info: &PanicInfo) -> ! { |
nothing calls this directly
no outgoing calls
no test coverage detected