Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn main() {
let v: Vec<isize> = vec![1, 2, 3];
v[1] = 4; //~ ERROR cannot borrow `v` as mutable, as it is not declared as mutable
}