blob: b25bdc9800d17dd3d0483856933528e3c11280e8 [file] [log] [blame]
#![crate_type = "cdylib"]
#![no_std]
use core::panic::PanicInfo;
#[no_mangle]
pub extern fn foo() {
panic!()
}
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}