Sign in
rust
/
rust
/
ac3bada2824c8a32fee784e13df8a30ac68fab43
/
.
/
tests
/
ui
/
panic-handler
/
auxiliary
/
some-panic-impl.rs
blob: 8dacc87b08d55df6c4105c4571009d34f9aefb03 [
file
]
//@ no-prefer-dynamic
#![
crate_type
=
"rlib"
]
#![
no_std
]
use
core
::
panic
::
PanicInfo
;
#[
panic_handler
]
fn
panic
(
info
:
&
PanicInfo
)
->
!
{
loop
{}
}