blob: a878120507172ef6007097c94e3ba184ee797c09 [file] [log] [blame]
#![crate_type = "lib"]
#![feature(panic_handler)]
#![no_std]
use core::panic::PanicInfo;
#[panic_handler]
fn panic(_: &PanicInfo) -> ! {
loop {}
}