2019-08-26 05:11:47 -05:00
|
|
|
// ignore-windows
|
|
|
|
// ignore-macos
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items, start)]
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
#[link(name = "c")]
|
|
|
|
extern "C" {}
|
|
|
|
|
|
|
|
#[lang = "sized"]
|
|
|
|
pub trait Sized {}
|
|
|
|
#[lang = "copy"]
|
|
|
|
pub trait Copy {}
|
|
|
|
#[lang = "freeze"]
|
|
|
|
pub unsafe trait Freeze {}
|
|
|
|
|
|
|
|
#[lang = "start"]
|
|
|
|
#[start]
|
|
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
|
2021-05-26 16:39:39 -05:00
|
|
|
struct A;
|
2019-08-26 05:11:47 -05:00
|
|
|
|
|
|
|
impl A {
|
|
|
|
pub fn as_ref(self) -> &'static str {
|
|
|
|
"A"
|
|
|
|
}
|
|
|
|
}
|