about summary refs log tree commit diff
path: root/library/compiler-builtins/crates/panic-handler/src/lib.rs
blob: f4d7c839740b5e05178a7b9e26f9dfebb80d10ec (plain)
1
2
3
4
5
6
7
8
//! This is needed for tests on targets that require a `#[panic_handler]` function

#![no_std]

#[panic_handler]
fn panic(_: &core::panic::PanicInfo<'_>) -> ! {
    loop {}
}