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