Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
librustc_error_codes
/
error_codes
/
E0718.md
blob: 8548ff0c150118cbc86b72e63959503ffb13f1e3 [
file
] [
view
]
This
error indicates that a
`#[lang = ".."]`
attribute was placed
on the wrong type of item
.
Examples
of erroneous code
:
```compile_fail,E0718
#![feature(lang_items)]
#[lang = "arc"]
static X: u32 = 42;
```