mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			250 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			250 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
fn main() {
 | 
						|
  let _ = fix(|_: &dyn Fn()| {});
 | 
						|
}
 | 
						|
 | 
						|
fn fix<F: Fn(G), G: Fn()>(f: F) -> impl Fn() {
 | 
						|
  move || f(fix(&f))
 | 
						|
  //~^ ERROR concrete type differs from previous defining opaque type use
 | 
						|
  //~| ERROR expected generic type parameter, found `&F`
 | 
						|
}
 |