blob: a2a0e46ec6829049e6cee7472d559c0eef657c4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//@ compile-flags:-C panic=abort
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_handler]
fn panic(info: &PanicInfo<'static>) -> !
//~^ ERROR #[panic_handler]` function has wrong type [E0308]
{
loop {}
}
|