blob: 14c8c7c63b70cb8af7c4f0fdd9c63f51efddb522 [file] [log] [blame] [edit]
//@ compile-flags:-C panic=abort
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_handler]
fn panic() -> ! { //~ ERROR #[panic_handler]` function has wrong type [E0308]
loop {}
}