mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 12:36:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			219 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			219 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(start)]
 | |
| #![feature(unix_sigpipe)]
 | |
| 
 | |
| #[start]
 | |
| #[unix_sigpipe = "inherit"] //~ error: `unix_sigpipe` attribute can only be used on `fn main()`
 | |
| fn custom_start(argc: isize, argv: *const *const u8) -> isize { 0 }
 | 
