Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-bad-signature-4.rs
blob: 8fc5b3240140fb2d2c064fcdf3f0582085edca72 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
{}
}