rust/tests/ui/panic-handler/panic-handler-bad-signature-3.rs
2023-01-11 09:32:08 +00:00

12 lines
179 B
Rust

// compile-flags:-C panic=abort
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_handler]
fn panic() -> ! { //~ ERROR function should have one argument
loop {}
}