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