summaryrefslogtreecommitdiffstats
path: root/src/test/ui/let-else/let-else-temp-borrowck.rs
blob: 3910d35e77676b7391c4057569fe531c011db54f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// run-pass
//
// from issue #93951, where borrowck complained the temporary that `foo(&x)` was stored in was to
// be dropped sometime after `x` was. It then suggested adding a semicolon that was already there.

#![feature(let_else)]
use std::fmt::Debug;

fn foo<'a>(x: &'a str) -> Result<impl Debug + 'a, ()> {
    Ok(x)
}

fn let_else() {
    let x = String::from("Hey");
    let Ok(_) = foo(&x) else { return };
}

fn if_let() {
    let x = String::from("Hey");
    let _ = if let Ok(s) = foo(&x) { s } else { return };
}

fn main() {
    let_else();
    if_let();
}