summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/dont-suggest-missing-await.rs
blob: a8e5b38ec1dd8f3ce36692a903aed0372f435d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// edition:2018

// This test ensures we don't make the suggestion in bodies that aren't `async`.

fn take_u32(x: u32) {}

async fn make_u32() -> u32 {
    22
}

async fn dont_suggest_await_in_closure() {
    || {
        let x = make_u32();
        take_u32(x)
        //~^ ERROR mismatched types [E0308]
    };
}

fn main() {}