mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 01:50:40 +00:00
10 lines
134 B
Rust
10 lines
134 B
Rust
//@ compile-flags: -C panic=abort
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
#[panic_handler]
|
|
fn panic(_: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|