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

26 lines
395 B
Rust

//@ aux-build:block-on.rs
//@ edition:2021
//@ run-pass
//@ check-run-results
extern crate block_on;
async fn call_once(f: impl AsyncFnOnce()) {
f().await;
}
async fn async_main() {
let x = &mut 0;
let y = &mut 0;
let c = async || {
*x = 1;
*y = 2;
};
call_once(c).await;
println!("{x} {y}");
}
fn main() {
block_on::block_on(async_main());
}