blob: 0ddb3dc921501041c32ff315c81c8a0993b05660 [file] [log] [blame]
// 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 {}
}