summaryrefslogtreecommitdiffstats
path: root/src/test/ui/try-block/try-block-in-edition2015.rs
blob: 00964297308093ac51df1a9bdf8ca28de3d76868 (plain)
1
2
3
4
5
6
7
8
9
10
// compile-flags: --edition 2015

pub fn main() {
    let try_result: Option<_> = try {
    //~^ ERROR expected struct, variant or union type, found macro `try`
        let x = 5; //~ ERROR expected identifier, found keyword
        x
    };
    assert_eq!(try_result, Some(5));
}