2021-11-25 10:33:01 -06:00
|
|
|
error[E0596]: cannot borrow `*inner` as mutable, as it is behind a `&` reference
|
2024-01-13 11:09:33 -06:00
|
|
|
--> $DIR/issue-91206.rs:13:5
|
2021-11-25 10:33:01 -06:00
|
|
|
|
|
|
|
|
LL | inner.clear();
|
2023-06-22 15:30:23 -05:00
|
|
|
| ^^^^^ `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
2023-02-03 12:53:27 -06:00
|
|
|
|
|
|
|
|
help: consider specifying this binding's type
|
|
|
|
|
|
|
|
|
LL | let inner: &mut Vec<usize> = client.get_inner_ref();
|
|
|
|
| +++++++++++++++++
|
2021-11-25 10:33:01 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-11-25 10:33:01 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|