mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
205 B
Rust
13 lines
205 B
Rust
//@ aux-build:panic-handler.rs
|
|
//@ compile-flags: --document-private-items
|
|
//@ build-pass
|
|
//@ only-linux
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
#[panic_handler]
|
|
fn panic(_: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|