2022-12-30 06:46:17 +00:00
|
|
|
error[E0596]: cannot borrow `v` as mutable, as it is not declared as mutable
|
|
|
|
--> $DIR/many-mutable-borrows.rs:2:9
|
|
|
|
|
|
|
|
|
LL | let v = Vec::new();
|
2023-01-01 08:06:31 +00:00
|
|
|
| ^ not mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
LL | v.push(0);
|
2023-06-22 20:30:23 +00:00
|
|
|
| - cannot borrow as mutable
|
2022-12-30 06:46:17 +00:00
|
|
|
|
|
|
|
|
= note: ...and 5 other attempted mutable borrows
|
2023-01-01 08:06:31 +00:00
|
|
|
help: consider changing this to be mutable
|
|
|
|
|
|
|
|
|
LL | let mut v = Vec::new();
|
|
|
|
| +++
|
2022-12-30 06:46:17 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-30 06:46:17 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|