mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			220 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			220 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(core_intrinsics)]
 | |
| fn main() {
 | |
|     // Test that calls to intrinsics are never promoted
 | |
|     let x: &'static usize =
 | |
|         &std::intrinsics::size_of::<i32>(); //~ ERROR temporary value dropped while borrowed
 | |
| }
 | 
