Sign in
rust
/
rust
/
dc0e276d1efabd082b38878948eff0faeebda58f
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-wrong-location.rs
blob: 22f6b6e72489049ea7ea8bf6298c7aa888e9aa18 [
file
]
//@ compile-flags:-C panic=abort
#![
no_std
]
#![
no_main
]
#[
panic_handler
]
//~ ERROR attribute cannot be used on statics
static
X
:
u32
=
42
;
//~? ERROR `#[panic_handler]` function required, but not found