blob: 82ab2d4af1ba82f73dcd2c342c09601197c94283 [file] [log] [blame]
#![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() {}