aboutsummaryrefslogtreecommitdiff
path: root/src/panic_wait.rs
blob: 33097d853d2752ca80f6d3116339b8f23ff227f7 (plain)
1
2
3
4
5
6
7
8
9
//! A panic handler that infinitely waits

use core::panic::PanicInfo;

/// Panic handler
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
    unimplemented!()
}