Sign in
rust
/
rust
/
dc0ec741a8a06b0c3bb5596fbb00a4e29fad3877
/
.
/
tests
/
ui
/
error-codes
/
E0718.rs
blob: 87e366c91a609b8dc04426b5d0a3704dcc9b8a12 [
file
]
#![
feature
(
lang_items
)]
// Box is expected to be a struct, so this will error.
#[
lang
=
"owned_box"
]
//~ ERROR `#[lang = "owned_box"]` attribute cannot be used on statics
static
X
:
u32
=
42
;
fn
main
()
{}