mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
21 lines
302 B
Rust
21 lines
302 B
Rust
//@ 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);
|
|
}
|