mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
5 lines
140 B
Rust
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
|
|
}
|