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