Sign in
◑
Theme
rust
/
rust
/
c1d608bb7e862c8d8b74ce7cfc042fa98e9d4792
/
.
/
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
{}
}