Sign in
◑
Theme
rust
/
rust
/
21b4ef650f016cc2ddcfa29c9ad2bd8f2d4e359d
/
.
/
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