mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
edafbaffb2
- Either explicitly annotate `let x: () = expr;` where `x` has unit type, or remove the unit binding to leave only `expr;` instead. - Fix disjoint-capture-in-same-closure test
19 lines
303 B
Rust
19 lines
303 B
Rust
// 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);
|
|
}
|