summaryrefslogtreecommitdiffstats
path: root/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
blob: 321fd954db6d0a708392dab311503a6803b33c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// compile-flags:-C panic=abort

#![feature(alloc_error_handler)]
#![no_std]
#![no_main]

struct Layout;

#[alloc_error_handler]
fn oom() -> ! { //~ ERROR function should have one argument
    loop {}
}

#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! { loop {} }