Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
panic-handler
/
panic-handler-wrong-location.rs
blob: 22f6b6e72489049ea7ea8bf6298c7aa888e9aa18 [
file
] [
edit
]
//@ 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