Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// 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() {