mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 23:44:50 +00:00
10 lines
133 B
Rust
10 lines
133 B
Rust
// compile-flags: -C panic=abort
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
#[panic_handler]
|
|
fn panic(_: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|