Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-bad-signature-5.rs
blob: a2a0e46ec6829049e6cee7472d559c0eef657c4a [
file
]
//@ compile-flags:-C panic=abort
#![
no_std
]
#![
no_main
]
use
core
::
panic
::
PanicInfo
;
#[
panic_handler
]
fn
panic
(
info
:
&
PanicInfo
<
'
static
>)
->
!
//~^ ERROR #[panic_handler]` function has wrong type [E0308]
{
loop
{}
}