rust/tests/ui/async-await/async-closures/higher-ranked.rs
2024-12-13 00:04:56 +00:00

15 lines
242 B
Rust

//@ aux-build:block-on.rs
//@ edition:2021
//@ build-pass
extern crate block_on;
fn main() {
block_on::block_on(async {
let x = async move |x: &str| {
println!("{x}");
};
x("hello!").await;
});
}