15 lines
274 B
Rust
15 lines
274 B
Rust
|
//@ 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!();
|
||
|
}
|