12 lines
404 B
Plaintext
12 lines
404 B
Plaintext
|
error[E0596]: cannot borrow immutable local variable `v` as mutable
|
||
|
--> $DIR/borrowck-mut-slice-of-imm-vec.rs:17:16
|
||
|
|
|
||
|
LL | let v = vec![1, 2, 3];
|
||
|
| - consider changing this to `mut v`
|
||
|
LL | write(&mut v); //~ ERROR cannot borrow
|
||
|
| ^ cannot borrow mutably
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0596`.
|