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