summary refs log tree commit diff
path: root/src/test/ui/try-block/try-block-in-match.rs
blob: bce0d0340b65859cb296225fda9295fcd437b81d (plain)
1
2
3
4
5
6
7
// compile-flags: --edition 2018

#![feature(try_blocks)]

fn main() {
    match try { false } { _ => {} } //~ ERROR expected expression, found reserved keyword `try`
}