summary refs log tree commit diff
path: root/tests/ui/panic-handler/panic-handler-bad-signature-2.rs
blob: 3c3f1513f6fe863c4cb0a7c0c5b41da539ea09c0 (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: &'static PanicInfo) -> !
//~^ #[panic_handler]` function has wrong type [E0308]
{
    loop {}
}