Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn foo() -> Box<dyn Fn()> {
let num = 5;
let closure = || { //~ ERROR expected a closure that
num += 1;
};
Box::new(closure)
}
fn main() {}