Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-rustfix
#![forbid(unused_mut)]
fn main() {
let x = 1;
//~^ ERROR: variable does not need to be mutable
(move|| { println!("{}", x); })();
}