mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			428 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			428 lines
		
	
	
		
			9.8 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-rustfix
 | |
| 
 | |
| fn foo<N>(_x: N) {}
 | |
| //~^ NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE function defined here
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| //~| NOTE
 | |
| 
 | |
| 
 | |
| fn main() {
 | |
|     foo::<u16>(42_usize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_u64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_u32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_u16);
 | |
|     foo::<u16>(42_u8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_isize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_i64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_i32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_i16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42_i8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42.0_f64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u16>(42.0_f32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
| 
 | |
|     foo::<i16>(42_usize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_u64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_u32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_u16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_u8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_isize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_i64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_i32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42_i16);
 | |
|     foo::<i16>(42_i8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42.0_f64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i16>(42.0_f32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
| 
 | |
|     foo::<u8>(42_usize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_u64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_u32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_u16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_u8);
 | |
|     foo::<u8>(42_isize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_i64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_i32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_i16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42_i8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42.0_f64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<u8>(42.0_f32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
| 
 | |
|     foo::<i8>(42_usize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_u64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_u32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_u16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_u8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_isize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_i64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_i32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_i16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42_i8);
 | |
|     foo::<i8>(42.0_f64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i8>(42.0_f32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
| 
 | |
|     foo::<f64>(42_usize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_u64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_u32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_u16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_u8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_isize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_i64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_i32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_i16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42_i8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f64>(42.0_f64);
 | |
|     foo::<f64>(42.0_f32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
| 
 | |
|     foo::<f32>(42_usize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_u64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_u32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_u16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_u8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_isize);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_i64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_i32);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_i16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42_i8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42.0_f64);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<f32>(42.0_f32);
 | |
| 
 | |
|     foo::<u32>(42_u8 as u16);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
|     foo::<i32>(-42_i8);
 | |
|     //~^ ERROR mismatched types
 | |
|     //~| NOTE expected
 | |
|     //~| NOTE arguments
 | |
| }
 | 
