Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
tests
/
rustdoc-ui
/
auxiliary
/
panic-handler.rs
blob: 0aaaeee105147a47890ac15a5032fef0b4ea5325 [
file
] [
log
] [
blame
]
// compile-flags: -C panic=abort
#![
no_std
]
#![
no_main
]
#[
panic_handler
]
fn
panic
(
_
:
&
core
::
panic
::
PanicInfo
)
->
!
{
loop
{}
}