Sign in
rust
/
rust
/
499fca9a7def7c05d4e2a73e00e6d64a2bc9cb26
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0718.md
blob: 1fe62ecf1f4e007e69d473f3b6ddaa8fd4a21668 [
file
] [
log
] [
blame
] [
view
]
A
`#[lang = ".."]`
attribute was placed on the wrong item type
.
Erroneous
code example
:
```compile_fail,E0718
#![feature(lang_items)]
#[lang = "owned_box"]
static X: u32 = 42;
```