As before, add `MetaSized` and `PointeeSized` traits to all of the non-minicore `no_core` tests so that they don't fail for lack of language items.
31 lines
502 B
Rust
31 lines
502 B
Rust
#![feature(lang_items, no_core, auto_traits)]
|
|
#![no_core]
|
|
|
|
#[lang = "copy"]
|
|
trait Copy {}
|
|
|
|
#[lang = "pointee_sized"]
|
|
pub trait PointeeSized {}
|
|
|
|
#[lang = "meta_sized"]
|
|
pub trait MetaSized: PointeeSized {}
|
|
|
|
#[lang = "sized"]
|
|
trait Sized: MetaSized {}
|
|
|
|
#[lang = "freeze"]
|
|
auto trait Freeze {}
|
|
|
|
#[lang = "start"]
|
|
fn start<T>(_main: fn() -> T, _argc: isize, _argv: *const *const u8, _sigpipe: u8) -> isize {
|
|
0
|
|
}
|
|
|
|
extern "C" {
|
|
fn _foo() -> [u8; 16];
|
|
}
|
|
|
|
fn _main() {
|
|
let _a = unsafe { _foo() };
|
|
}
|