(layout: core::alloc::Layout)
| 34 | |
| 35 | #[alloc_error_handler] |
| 36 | pub fn handle_alloc_error(layout: core::alloc::Layout) -> ! { |
| 37 | panic!("Heap allocation error, layout = {:?}", layout); |
| 38 | } |
| 39 | |
| 40 | #[no_mangle] |
| 41 | #[link_section = ".text.entry"] |
nothing calls this directly
no outgoing calls
no test coverage detected