mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			338 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			338 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| // ^-- The above is needed as this issue is related to LLVM/codegen.
 | |
| // min-llvm-version:15.0.0
 | |
| // ^-- The above is needed as this issue is fixed by the opaque pointers.
 | |
| 
 | |
| fn main() {
 | |
|     type_error(|x| &x);
 | |
| }
 | |
| 
 | |
| fn type_error<T>(
 | |
|     _selector: for<'a> fn(&'a Vec<Box<dyn for<'b> Fn(&'b u8)>>) -> &'a Vec<Box<dyn Fn(T)>>,
 | |
| ) {
 | |
| }
 | 
