mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			294 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			294 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| 
 | |
| 
 | |
| 
 | |
| // When all branches of a match expression result in panic, the entire
 | |
| // match expression results in panic.
 | |
| 
 | |
| pub fn main() {
 | |
|     let _x =
 | |
|         match true {
 | |
|           true => { 10 }
 | |
|           false => { match true { true => { panic!() } false => { panic!() } } }
 | |
|         };
 | |
| }
 | 
