Sign in
rust
/
rust
/
58f80da065eede67f1476ecd5f30006e62dcc2fe
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0718.md
blob: 2ecf3081d2ed60bc39438f99e5a363b7e1e8c970 [
file
] [
view
]
#### Note: this error code is no longer emitted by the compiler.
A
`#[lang = ".."]`
attribute was placed on the wrong item type
.
Erroneous
code example
:
```compile_fail
#![feature(lang_items)]
#[lang = "owned_box"]
static X: u32 = 42;
```