summaryrefslogtreecommitdiffstats
path: root/tests/ui/writing-to-immutable-vec.rs
blob: dbcc3f0bbe98c2b5c00e8f440deabfddbd0d0cf7 (plain)
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
}