mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			213 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			213 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ compile-flags: -Z teach
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let s = "hoho";
 | 
						|
 | 
						|
    match s {
 | 
						|
        "hello" ..= "world" => {}
 | 
						|
        //~^ ERROR only `char` and numeric types are allowed in range patterns
 | 
						|
        _ => {}
 | 
						|
    }
 | 
						|
}
 |