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