This error indicates that a #[lang = ".."] attribute was placed on the wrong type of item.

Examples of erroneous code:

#![feature(lang_items)]

#[lang = "arc"]
static X: u32 = 42;