mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			450 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			450 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// check-fail
 | 
						|
 | 
						|
#![feature(core_intrinsics, intrinsics)]
 | 
						|
 | 
						|
fn a() {
 | 
						|
    let _: unsafe extern "rust-intrinsic" fn(isize) -> usize = std::mem::transmute;
 | 
						|
    //~^ ERROR cannot coerce
 | 
						|
}
 | 
						|
 | 
						|
fn b() {
 | 
						|
    let _ = std::mem::transmute as unsafe extern "rust-intrinsic" fn(isize) -> usize;
 | 
						|
    //~^ ERROR casting
 | 
						|
}
 | 
						|
 | 
						|
fn c() {
 | 
						|
    let _ = [
 | 
						|
        std::intrinsics::likely,
 | 
						|
        std::intrinsics::unlikely,
 | 
						|
        //~^ ERROR cannot coerce
 | 
						|
    ];
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |