blob: 87e366c91a609b8dc04426b5d0a3704dcc9b8a12 [file]
#![feature(lang_items)]
// Box is expected to be a struct, so this will error.
#[lang = "owned_box"] //~ ERROR `#[lang = "owned_box"]` attribute cannot be used on statics
static X: u32 = 42;
fn main() {}