blob: e667b72aee530616b705ed4354b14c1cacba0a93 [file] [log] [blame]
// edition:2018
#![feature(async_closure)]
fn foo() -> Box<dyn std::future::Future<Output = u32>> {
let x = 0u32;
Box::new((async || x)())
//~^ ERROR E0373
}
fn main() {
}