mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			307 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			307 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ should-fail
 | |
| 
 | |
| #![allow(unused)]
 | |
| 
 | |
| trait Foo<T>: Sized {
 | |
|     fn bar(i: i32, t: T, s: &Self) -> (T, i32);
 | |
| }
 | |
| 
 | |
| impl Foo<usize> for () {
 | |
|     fn bar(i: _, t: _, s: _) -> _ {
 | |
|         //~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions
 | |
|         (1, 2)
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
