Sign in
rust
/
rust
/
86193fa8a04bcbdeee9917c2a2d1e2ea7054c0a6
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-requires-panic-info.rs
blob: 0b8308ba753aab76a2807e09d4057f05efb960db [
file
] [
log
] [
blame
]
//@ 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
{}