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

#![no_std]
#![no_main]

use core::panic::PanicInfo;

#[panic_handler]
fn panic(
    info: &'static PanicInfo, //~ ERROR argument should be `&PanicInfo`
) -> !
{
    loop {}
}