blob: ffb97ca04ac502e37d07158ae12c0fed419310af [file] [log] [blame] [edit]
//@ edition:2018
#![feature(async_closure)]
fn foo() -> Box<dyn std::future::Future<Output = u32>> {
let x = 0u32;
Box::new((async || x)())
//~^ ERROR cannot return value referencing local variable `x`
}
fn main() {
}