summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/no-non-guaranteed-initialization.rs
blob: c4d81bf83a3c43caadb487b010526a1864b3d743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// edition:2018
// compile-flags: --crate-type lib

async fn no_non_guaranteed_initialization(x: usize) -> usize {
    let y;
    if x > 5 {
        y = echo(10).await;
    }
    y //~ ERROR E0381
}

async fn echo(x: usize) -> usize { x + 1 }