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

#![no_std]
#![no_main]

use core::panic::PanicInfo;

#[panic_handler]
fn panic<T>(pi: &PanicInfo) -> ! {
    //~^ ERROR should have no type parameters
    loop {}
}