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