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