rust/src/test/ui/borrowck/borrowck-mut-slice-of-imm-vec.stderr

12 lines
404 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
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`.