summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/await-sequence.rs
blob: 79f68dd606cda0374a0f8475b65a4caf2e154d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// edition:2021
// 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);
}