summaryrefslogtreecommitdiffstats
path: root/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
blob: 8430fabe84d0962dbeb17ca26afaa414b764100e (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 this function takes 0 arguments but 1 argument was supplied
    loop {}
}

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