summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/await-sequence.rs
blob: 726c4284ec15e2d0f2c6133ef8d869a703d2129e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// edition:2021
// compile-flags: -Z drop-tracking
// build-pass

use std::collections::HashMap;

fn main() {
    let _ = real_main();
}

async fn nop() {}

async fn real_main() {
    nop().await;
    nop().await;
    nop().await;
    nop().await;

    let mut map: HashMap<(), ()> = HashMap::new();
    map.insert((), nop().await);
}