Files
rust/src/test/ui/async-await/async-borrowck-escaping-block-error.fixed
2019-10-08 11:13:48 +00:00

13 lines
200 B
Rust

// edition:2018
// run-rustfix
fn foo() -> Box<impl std::future::Future<Output = u32>> {
let x = 0u32;
Box::new(async move { x } )
//~^ ERROR E0373
}
fn main() {
let _foo = foo();
}