mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			311 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			311 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| trait Trait<'a> {}
 | |
| impl<T> Trait<'_> for T {}
 | |
| fn whatever() -> impl for<'a> Trait<'a> + for<'b> Trait<'b> {}
 | |
| 
 | |
| fn whatever2() -> impl for<'c> Fn(&'c ()) {
 | |
|     |_: &()| {}
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let x: u32 = whatever();
 | |
|     //~^ ERROR mismatched types
 | |
|     let x2: u32 = whatever2();
 | |
|     //~^ ERROR mismatched types
 | |
| }
 | 
