3 lines
104 B
Rust
3 lines
104 B
Rust
// error-pattern:assigning to immutable vec content
|
|
fn main() { let v: ~[int] = ~[1, 2, 3]; v[1] = 4; }
|