Sign in
rust
/
rust
/
52dff85c4e5b68b8a5a871cf7a35b1bf9cbb5028
/
.
/
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
{}
}