rust/tests/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
2024-02-16 20:02:50 +00:00

16 lines
297 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 {} }