rust/tests/ui/async-await/await-sequence.rs
2023-01-12 11:58:24 -08:00

22 lines
335 B
Rust

// 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);
}