Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
ui
/
panic_implementation-closures.rs
blob: b161859bf9c5159bdb4180d9449fca686365efb2 [
file
]
//@ 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
{}
}