Files
Notes/notes-service/vendor/defmt/tests/ui/panic-handler-no-mangle.rs
T
2026-08-01 16:11:49 +03:00

9 lines
93 B
Rust

#![no_main]
#![no_std]
#[defmt::panic_handler]
#[no_mangle]
fn panic() -> ! {
loop {}
}