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