blob: f2d884b7469706c0dfac1d8299ca76bb67230cda (
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, panic_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 {} }
|