blob: 09c94139e1697944abf6a2346d04f4300db4d716 [file] [log] [blame]
//@ compile-flags:-C panic=abort
//@ only-x86_64
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_handler]
#[track_caller]
//~^ ERROR `#[panic_handler]` function is not allowed to have `#[track_caller]`
fn panic(info: &PanicInfo) -> ! {
unimplemented!();
}