blob: 078348eb4e6f27883c60a57d51e59a3108788cda [file] [log] [blame]
//@ aux-build:block-on.rs
//@ edition:2021
//@ run-pass
extern crate block_on;
fn main() {
block_on::block_on(async {
async fn needs_async_fn_once(x: impl AsyncFnOnce()) {
x().await;
}
needs_async_fn_once(async || {}).await;
needs_async_fn_once(|| async {}).await;
async fn foo() {}
needs_async_fn_once(foo).await;
});
}