Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn main() {
let x = 0;
(move || {
x = 1;
//~^ ERROR cannot assign to `x`, as it is not declared as mutable [E0594]
})()
}