mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			328 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			328 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(impl_trait_in_fn_trait_return)]
 | |
| use std::fmt::Debug;
 | |
| 
 | |
| fn a<'a>() -> impl Fn(&'a u8) -> (impl Debug + '_) {
 | |
|     //~^ ERROR cannot resolve opaque type
 | |
| 
 | |
|     |x| x
 | |
|     //~^ ERROR concrete type differs from previous defining opaque type use
 | |
| }
 | |
| 
 | |
| fn _b<'a>() -> impl Fn(&'a u8) -> (impl Debug + 'a) {
 | |
|     a()
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
