mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
16 lines
195 B
Rust
16 lines
195 B
Rust
//@ edition:2021
|
|
//@ check-pass
|
|
|
|
#![feature(try_blocks)]
|
|
|
|
|
|
fn main() {
|
|
let _: Result<i32, i32> = try {
|
|
let Some(x) = Some(0) else {
|
|
Err(1)?
|
|
};
|
|
|
|
x
|
|
};
|
|
}
|