mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	 253eb95d45
			
		
	
	
		253eb95d45
		
	
	
	
	
		
			
			- Add primary span labels. - Point at const generic parameter used as pattern. - Point at statics used as pattern. - Point at let bindings used in const pattern.
		
			
				
	
	
		
			11 lines
		
	
	
		
			250 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			250 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Identifier pattern referring to a const generic parameter is an error (issue #68853).
 | |
| 
 | |
| fn check<const N: usize>() {
 | |
|     match 1 {
 | |
|         N => {} //~ ERROR constant parameters cannot be referenced in patterns
 | |
|         _ => {}
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {}
 |