rust/tests/ui/async-await/async-fn/simple.rs

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

22 lines
342 B
Rust
Raw Normal View History

//@ aux-build:block-on.rs
2023-12-20 17:41:51 +00:00
//@ edition: 2021
//@ build-pass
2023-12-20 17:41:51 +00:00
#![feature(async_fn_traits)]
extern crate block_on;
2023-12-20 17:41:51 +00:00
use std::ops::AsyncFn;
async fn foo() {}
async fn call_asyncly(f: impl AsyncFn(i32) -> i32) -> i32 {
f(1).await
2023-12-20 17:41:51 +00:00
}
fn main() {
block_on::block_on(async {
call_asyncly(|x| async move { x + 1 }).await;
});
2023-12-20 17:41:51 +00:00
}