mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			298 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			298 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
fn let_in<T, F>(x: T, f: F) where F: FnOnce(T) {}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let_in(3u32, |i| { assert!(i == 3i32); });
 | 
						|
    //~^ ERROR mismatched types
 | 
						|
    //~| expected `u32`, found `i32`
 | 
						|
 | 
						|
    let_in(3i32, |i| { assert!(i == 3u32); });
 | 
						|
    //~^ ERROR mismatched types
 | 
						|
    //~| expected `i32`, found `u32`
 | 
						|
}
 |