mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	git-subtree-dir: compiler/rustc_codegen_gcc git-subtree-mainline: ae90dcf0207c57c3034f00b07048d63f8b2363c8 git-subtree-split: afae271d5d3719eeb92c18bc004bb6d1965a5f3f
		
			
				
	
	
		
			50 lines
		
	
	
		
			612 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			612 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Compiler:
 | 
						|
//
 | 
						|
// Run-time:
 | 
						|
//   status: 2
 | 
						|
 | 
						|
#![feature(auto_traits, lang_items, no_core, start, intrinsics)]
 | 
						|
 | 
						|
#![no_std]
 | 
						|
#![no_core]
 | 
						|
 | 
						|
mod libc {
 | 
						|
    #[link(name = "c")]
 | 
						|
    extern "C" {
 | 
						|
        pub fn exit(status: i32);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
/*
 | 
						|
 * 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 {}
 | 
						|
 | 
						|
/*
 | 
						|
 * Code
 | 
						|
 */
 | 
						|
 | 
						|
#[start]
 | 
						|
fn main(mut argc: isize, _argv: *const *const u8) -> isize {
 | 
						|
    unsafe {
 | 
						|
        libc::exit(2);
 | 
						|
    }
 | 
						|
    0
 | 
						|
}
 |