Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
ui
/
error-codes
/
E0718.rs
blob: 82ab2d4af1ba82f73dcd2c342c09601197c94283 [
file
] [
log
] [
blame
]
#![
feature
(
lang_items
)]
// Arc is expected to be a struct, so this will error.
#[
lang
=
"arc"
]
//~ ERROR language item must be applied to a struct
static
X
:
u32
=
42
;
fn
main
()
{}