mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +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
 | 
						|
}
 |