1 // build-pass (FIXME(62277): could be check-pass?) 2 3 #![feature(no_core, lang_items)] 4 #![no_core] 5 #![crate_type = "lib"] 6 7 #[lang = "sized"] 8 trait Sized {} 9 10 extern "C" { 11 pub static A: u32; 12 } 13