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