rust/src/librustc_error_codes/error_codes/E0718.md

210 B

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;