rust/tests/ui/try-block/try-block-catch.rs

11 lines
197 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
}