rust/tests/ui/async-await/async-closures/higher-ranked.rs

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

17 lines
270 B
Rust
Raw Normal View History

2024-01-25 11:43:35 -06:00
//@ aux-build:block-on.rs
//@ edition:2021
2024-01-25 11:43:35 -06:00
//@ build-pass
#![feature(async_closure)]
2024-01-25 11:43:35 -06:00
extern crate block_on;
fn main() {
2024-01-25 11:43:35 -06:00
block_on::block_on(async {
let x = async move |x: &str| {
println!("{x}");
};
x("hello!").await;
});
}