Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
tests
/
rustdoc-ui
/
issues
/
duplicate-panic-impl-107918.rs
blob: ec35b52e33b0db1c2943370b3423861ca5479e63 [
file
] [
log
] [
blame
]
//@ aux-build:panic-handler.rs
//@ compile-flags: --document-private-items
//@ build-pass
//@ only-linux
// https://github.com/rust-lang/rust/issues/107918
#![
no_std
]
#![
no_main
]
#[
panic_handler
]
fn
panic
(
_
:
&
core
::
panic
::
PanicInfo
)
->
!
{
loop
{}
}