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;
```