rust/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.rs
2018-12-25 21:08:33 -07:00

17 lines
334 B
Rust

// compile-flags:-C panic=abort
#![feature(alloc_error_handler, panic_handler)]
#![no_std]
#![no_main]
struct Layout;
#[alloc_error_handler]
fn oom(
info: Layout, //~ ERROR argument should be `Layout`
) { //~ ERROR return type should be `!`
loop {}
}
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! { loop {} }