about summary refs log tree commit diff
path: root/tests/ui/let-else/issue-100103.rs
blob: c90b7958ba0472ddafac3208a39cc7ec9fee522d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ edition:2021
//@ check-pass

#![feature(try_blocks)]


fn main() {
    let _: Result<i32, i32> = try {
        let Some(x) = Some(0) else {
            Err(1)?
        };

        x
    };
}