mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			196 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// compile-flags: --edition 2018
 | 
						|
 | 
						|
#![feature(try_blocks)]
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let res: Option<bool> = try {
 | 
						|
        true
 | 
						|
    } catch { };
 | 
						|
    //~^ ERROR keyword `catch` cannot follow a `try` block
 | 
						|
}
 |