summaryrefslogtreecommitdiffstats
path: root/src/test/ui/try-block/issue-45124.rs
blob: 942014c9184d82ac730842874ba638e66473739d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// run-pass
#![allow(unreachable_code)]
// compile-flags: --edition 2018

#![feature(try_blocks)]

fn main() {
    let mut a = 0;
    let () = {
        let _: Result<(), ()> = try {
            let _ = Err(())?;
            return
        };
        a += 1;
    };
    a += 2;
    assert_eq!(a, 3);
}