blob: f5f9b2f5f0634b59f3ef41cc605b3b392d5fe752 [file] [log] [blame]
// edition:2021
// check-pass
#![feature(try_blocks)]
fn main() {
let _: Result<i32, i32> = try {
let Some(x) = Some(0) else {
Err(1)?
};
x
};
}