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