mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 03:27:44 +00:00
18 lines
355 B
Rust
18 lines
355 B
Rust
//@ aux-build:block-on.rs
|
|
//@ edition:2021
|
|
//@ run-pass
|
|
|
|
extern crate block_on;
|
|
|
|
fn main() {
|
|
block_on::block_on(async {
|
|
let mut prefix = String::from("Hello");
|
|
let mut c = async move |x: &str| {
|
|
prefix.push(',');
|
|
println!("{prefix} {x}!")
|
|
};
|
|
c("world").await;
|
|
c("rust").await;
|
|
});
|
|
}
|