17 lines
270 B
Rust
17 lines
270 B
Rust
//@ aux-build:block-on.rs
|
|
//@ edition:2021
|
|
//@ build-pass
|
|
|
|
#![feature(async_closure)]
|
|
|
|
extern crate block_on;
|
|
|
|
fn main() {
|
|
block_on::block_on(async {
|
|
let x = async move |x: &str| {
|
|
println!("{x}");
|
|
};
|
|
x("hello!").await;
|
|
});
|
|
}
|