Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-requires-panic-info.rs
blob: 0b8308ba753aab76a2807e09d4057f05efb960db [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags:-C panic=abort
#![
feature
(
lang_items
)]
#![
feature
(
no_core
)]
#![
no_core
]
#![
no_main
]
#[
panic_handler
]
fn
panic
()
->
!
{
//~^ ERROR requires `panic_info` lang_item
loop
{}
}
#[
lang
=
"sized"
]
trait
Sized
{}