mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
296 B
Rust
16 lines
296 B
Rust
// compile-flags:-C panic=abort
|
|
|
|
#![feature(alloc_error_handler)]
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
struct Layout;
|
|
|
|
#[alloc_error_handler]
|
|
fn oom() -> ! { //~ ERROR function takes 0 arguments but 1 argument was supplied
|
|
loop {}
|
|
}
|
|
|
|
#[panic_handler]
|
|
fn panic(_: &core::panic::PanicInfo) -> ! { loop {} }
|