rust/tests/ui/async-await/async-closures/await-inference-guidance.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
287 B
Rust
Raw Permalink Normal View History

2024-01-25 17:43:35 +00:00
//@ aux-build:block-on.rs
//@ edition:2021
//@ run-pass
extern crate block_on;
fn main() {
block_on::block_on(async {
let x = async |x: &str| -> String { x.to_owned() };
let mut s = x("hello, world").await;
s.truncate(4);
println!("{s}");
});
}