mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
f7237f16ae
git-subtree-dir: compiler/rustc_codegen_gcc git-subtree-mainline:ae90dcf020
git-subtree-split:afae271d5d
52 lines
660 B
Rust
52 lines
660 B
Rust
// Compiler:
|
|
//
|
|
// Run-time:
|
|
// status: signal
|
|
|
|
#![feature(auto_traits, lang_items, no_core, start, intrinsics)]
|
|
|
|
#![no_std]
|
|
#![no_core]
|
|
|
|
/*
|
|
* Core
|
|
*/
|
|
|
|
// Because we don't have core yet.
|
|
#[lang = "sized"]
|
|
pub trait Sized {}
|
|
|
|
#[lang = "copy"]
|
|
trait Copy {
|
|
}
|
|
|
|
impl Copy for isize {}
|
|
|
|
#[lang = "receiver"]
|
|
trait Receiver {
|
|
}
|
|
|
|
#[lang = "freeze"]
|
|
pub(crate) unsafe auto trait Freeze {}
|
|
|
|
mod intrinsics {
|
|
use super::Sized;
|
|
|
|
extern "rust-intrinsic" {
|
|
pub fn abort() -> !;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Code
|
|
*/
|
|
|
|
fn test_fail() -> ! {
|
|
unsafe { intrinsics::abort() };
|
|
}
|
|
|
|
#[start]
|
|
fn main(mut argc: isize, _argv: *const *const u8) -> isize {
|
|
test_fail();
|
|
}
|