mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17: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 {}
|
||
|
}
|