mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
22 lines
335 B
Rust
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);
|
|
}
|