mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 18:47:14 +00:00
17 lines
298 B
Rust
17 lines
298 B
Rust
//@ aux-build:block-on.rs
|
|
//@ edition:2021
|
|
//@ run-pass
|
|
|
|
extern crate block_on;
|
|
|
|
fn main() {
|
|
block_on::block_on(async {
|
|
let x = async || {};
|
|
|
|
async fn needs_async_fn_mut(mut x: impl AsyncFnMut()) {
|
|
x().await;
|
|
}
|
|
needs_async_fn_mut(x).await;
|
|
});
|
|
}
|