mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			289 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			289 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn f1<'a>(x: u8, y: &'a ...) {}
 | |
| //~^ ERROR C-variadic type `...` may not be nested inside another type
 | |
| 
 | |
| fn f2<'a>(x: u8, y: Vec<&'a ...>) {}
 | |
| //~^ ERROR C-variadic type `...` may not be nested inside another type
 | |
| 
 | |
| fn main() {
 | |
|     let _recovery_witness: () = 0; //~ ERROR mismatched types
 | |
| }
 | 
