13 lines
154 B
Rust
13 lines
154 B
Rust
|
// compile-pass
|
||
|
|
||
|
#![feature(no_core, lang_items)]
|
||
|
#![no_core]
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
#[lang = "sized"]
|
||
|
trait Sized {}
|
||
|
|
||
|
extern {
|
||
|
pub static A: u32;
|
||
|
}
|