rust/tests/ui/async-await/async-closures/async-fn-mut-for-async-fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
324 B
Rust
Raw Normal View History

// aux-build:block-on.rs
// edition:2021
// run-pass
#![feature(async_closure)]
extern crate block_on;
fn main() {
block_on::block_on(async {
let x = async || {};
async fn needs_async_fn_mut(mut x: impl async FnMut()) {
x().await;
}
needs_async_fn_mut(x).await;
});
}