mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
19 lines
303 B
Rust
19 lines
303 B
Rust
//@ compile-flags: -C panic=abort
|
|
//@ no-prefer-dynamic
|
|
|
|
#![no_std]
|
|
#![crate_type = "staticlib"]
|
|
#![feature(alloc_error_handler)]
|
|
|
|
#[panic_handler]
|
|
fn panic(_: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
#[alloc_error_handler]
|
|
fn oom(_: core::alloc::Layout) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
extern crate alloc;
|