summary refs log tree commit diff
path: root/src/test/ui/async-await/async-borrowck-escaping-block-error.fixed
blob: f004b4180ddc9c30fd424f4bfe8b21f66cb76434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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();
}