mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			219 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			219 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! Regression test for https://github.com/rust-lang/rust/issues/13482
 | |
| 
 | |
| fn main() {
 | |
|   let x = [1,2];
 | |
|   let y = match x {
 | |
|     [] => None, //~ ERROR pattern requires 0 elements but array has 2
 | |
|     [a,_] => Some(a)
 | |
|   };
 | |
| }
 | 
