1 2 3 4
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 }