mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			327 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			327 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
fn main() {
 | 
						|
    let x = 42;
 | 
						|
    match x {
 | 
						|
        //~^ ERROR: non-exhaustive patterns
 | 
						|
        //~| NOTE: not covered
 | 
						|
        //~| NOTE: matched value is of type
 | 
						|
        0..=73 => {},
 | 
						|
        74..=> {},
 | 
						|
        //~^ ERROR unexpected `>` after inclusive range
 | 
						|
        //~| NOTE this is parsed as an inclusive range `..=`
 | 
						|
    }
 | 
						|
}
 |