Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panic_implementation-closures.rs
blob: b161859bf9c5159bdb4180d9449fca686365efb2 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
{}
}