rust/tests/ui/writing-to-immutable-vec.rs
2023-01-11 09:32:08 +00:00

5 lines
140 B
Rust

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
}