mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			275 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			275 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Test the parser for the "while parsing this or-pattern..." label here.
 | |
| 
 | |
| fn main() {
 | |
|     match Some(42) {
 | |
|         Some(42) | .=. => {} //~ ERROR expected pattern, found `.`
 | |
|         //~^ while parsing this or-pattern starting here
 | |
|         //~| NOTE expected pattern
 | |
|     }
 | |
| }
 | 
