blob: 19d53f84cb66ea9f14fa77919268b91855e8b92d [file] [log] [blame] [edit]
//@ aux-build:panic-handler.rs
//@ compile-flags: --document-private-items
//@ build-pass
//@ only-linux
#![no_std]
#![no_main]
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! {
loop {}
}