mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			349 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			349 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! Basic smoke test for `minicore` test auxiliary.
 | |
| 
 | |
| //@ add-core-stubs
 | |
| //@ compile-flags: --target=x86_64-unknown-linux-gnu
 | |
| //@ needs-llvm-components: x86
 | |
| 
 | |
| #![crate_type = "lib"]
 | |
| #![feature(no_core)]
 | |
| #![no_std]
 | |
| #![no_core]
 | |
| 
 | |
| extern crate minicore;
 | |
| use minicore::*;
 | |
| 
 | |
| struct Meow;
 | |
| impl Copy for Meow {}
 | |
| 
 | |
| // CHECK-LABEL: meow
 | |
| #[no_mangle]
 | |
| fn meow() {}
 | 
