mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			245 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			245 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Regression test for #85794
 | |
| 
 | |
| struct Baz {
 | |
|     inner : dyn fn ()
 | |
|     //~^ ERROR expected `,`, or `}`, found keyword `fn`
 | |
|     //~| ERROR expected identifier, found keyword `fn`
 | |
|     //~| ERROR cannot find type `dyn` in this scope
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
