Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
6d71251cf9e40326461f90f8ff9a7024706aea87
/
.
/
tests
/
ui
/
panic_implementation-closures.rs
blob: b161859bf9c5159bdb4180d9449fca686365efb2 [
file
] [
log
] [
blame
]
//@ build-pass (FIXME(62277): could be check-pass?)
#![
crate_type
=
"rlib"
]
#![
no_std
]
#[
panic_handler
]
pub
fn
panic_fmt
(
_
:
&::
core
::
panic
::
PanicInfo
)
->
!
{
|
x
:
u8
|
x
;
loop
{}
}