Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-bad-signature-5.rs
blob: d7ee8f25b1141cb507e38809e2b1c89b17c623d7 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags:-C panic=abort
#![
no_std
]
#![
no_main
]
use
core
::
panic
::
PanicInfo
;
#[
panic_handler
]
fn
panic
(
info
:
&
PanicInfo
<
'
static
>)
->
!
//~^ #[panic_handler]` function has wrong type [E0308]
{
loop
{}
}