mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			158 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			158 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // issue #21405
 | |
| struct Foo;
 | |
| 
 | |
| fn foo<F>(f: F) where F: FnMut(Foo) {}
 | |
| 
 | |
| fn main() {
 | |
|     foo(|s| s.is_empty());
 | |
|     //~^ ERROR no method named `is_empty` found
 | |
| }
 | 
