blob: 387966a5064fa58d329a8653f780fb0f5c450e86 [file] [log] [blame]
// 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;
}