mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
193 B
Rust
13 lines
193 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
#![feature(no_core, lang_items)]
|
|
#![no_core]
|
|
#![crate_type = "lib"]
|
|
|
|
#[lang = "sized"]
|
|
trait Sized {}
|
|
|
|
extern "C" {
|
|
pub static A: u32;
|
|
}
|