2019-07-03 06:30:28 +09:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2018-10-15 20:48:25 +02:00
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
|
#![no_core]
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
|
trait Sized {}
|
|
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2018-10-15 20:48:25 +02:00
|
|
|
pub static A: u32;
|
|
|
|
|
}
|