mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| pub fn main() {
 | |
|     let foo = (Some(1), (), (), vec![2, 3]);
 | |
| 
 | |
|     match &foo {
 | |
|         (Some(n), .., v) => {
 | |
|             assert_eq!((*v).len(), 2);
 | |
|             assert_eq!(*n, 1);
 | |
|         }
 | |
|         (None, (), (), ..) => panic!(),
 | |
|     }
 | |
| }
 | 
