12 lines
190 B
Rust
12 lines
190 B
Rust
//@ compile-flags:-C panic=abort
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::panic::PanicInfo;
|
|
|
|
#[panic_handler]
|
|
fn panic() -> ! { //~ #[panic_handler]` function has wrong type [E0308]
|
|
loop {}
|
|
}
|