mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
14 lines
346 B
Rust
14 lines
346 B
Rust
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
|
|
// [drop_tracking] compile-flags: -Zdrop-tracking
|
|
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
|
|
// edition:2018
|
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
pub async fn f(_: ()) {}
|
|
|
|
pub async fn run() {
|
|
let x: Arc<Mutex<()>> = unimplemented!();
|
|
f(*x.lock().unwrap()).await;
|
|
}
|