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