mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			198 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			198 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn is_123<const N: usize>(x: [u32; N]) -> bool {
 | |
|     match x {
 | |
|         [1, 2, ..] => true, //~ ERROR cannot pattern-match on an array without a fixed length
 | |
|         _ => false
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
