Sign in
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
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
{}
}