]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0718.md
Rollup merge of #67875 - dtolnay:hidden, r=GuillaumeGomez
[rust.git] / src / librustc_error_codes / error_codes / E0718.md
1 This error indicates that a `#[lang = ".."]` attribute was placed
2 on the wrong type of item.
3
4 Examples of erroneous code:
5
6 ```compile_fail,E0718
7 #![feature(lang_items)]
8
9 #[lang = "arc"]
10 static X: u32 = 42;
11 ```