rust/src/test/ui/error-codes/E0718.rs
2018-12-25 21:08:33 -07:00

7 lines
182 B
Rust

#![feature(lang_items)]
// Arc is expected to be a struct, so this will error.
#[lang = "arc"] //~ ERROR language item must be applied to a struct
static X: u32 = 42;
fn main() {}