// run-rustfix fn fun(x: i32) -> i32 { x } fn main() { let _closure_annotated = |value: i32| -> i32 { temp: i32 = fun(5i32); //~^ ERROR expected identifier, found `:` temp + value + 1 }; }