rust/tests/ui/async-await/await-sequence.rs

21 lines
302 B
Rust
Raw Permalink Normal View History

//@ edition:2021
//@ build-pass
2023-01-10 00:19:36 +00:00
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);
}