2024-02-22 06:10:29 -06:00
|
|
|
//@ aux-build:panic-handler.rs
|
|
|
|
//@ compile-flags: --document-private-items
|
|
|
|
//@ build-pass
|
|
|
|
//@ only-linux
|
2023-02-24 11:15:56 -06:00
|
|
|
|
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
|
|
|
|
#[panic_handler]
|
|
|
|
fn panic(_: &core::panic::PanicInfo) -> ! {
|
|
|
|
loop {}
|
|
|
|
}
|