blob: d7ee8f25b1141cb507e38809e2b1c89b17c623d7 [file] [log] [blame]
//@ compile-flags:-C panic=abort
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_handler]
fn panic(info: &PanicInfo<'static>) -> !
//~^ #[panic_handler]` function has wrong type [E0308]
{
loop {}
}