1 2 3 4 5 6 7 8 9 10 11 12
// error-pattern: assigning to immutable vec content fn main() { fn f(&&v: [const int]) { // This shouldn't be possible v[0] = 1 } let v = [0]; f(v); }