blob: 416091920ad1f937519f98af6864b3c7d7f05e75 [file] [log] [blame]
error[E0596]: cannot borrow immutable local variable `v` as mutable
--> $DIR/borrowck-mut-slice-of-imm-vec.rs:7:16
|
LL | let v = vec![1, 2, 3];
| - help: make this binding mutable: `mut v`
LL | write(&mut v);
| ^ cannot borrow mutably
error: aborting due to previous error
For more information about this error, try `rustc --explain E0596`.