mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
14 lines
215 B
Rust
14 lines
215 B
Rust
// compile-flags:-C panic=abort
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use core::panic::PanicInfo;
|
|
|
|
#[panic_handler]
|
|
fn panic(info: &PanicInfo<'static>) -> !
|
|
//~^ #[panic_handler]` function has wrong type [E0308]
|
|
{
|
|
loop {}
|
|
}
|