Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
rustdoc-ui
/
issues
/
auxiliary
/
panic-handler.rs
blob: d157c6a434e545383d56ef680528d2e6d6745205 [
file
] [
log
] [
blame
]
//@ compile-flags: -C panic=abort
#![
no_std
]
#![
no_main
]
#[
panic_handler
]
fn
panic
(
_
:
&
core
::
panic
::
PanicInfo
)
->
!
{
loop
{}
}