mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
da1360d981
Partially address #45405.
15 lines
509 B
Plaintext
15 lines
509 B
Plaintext
error[E0596]: cannot borrow `*inner` as mutable, as it is behind a `&` reference
|
|
--> $DIR/issue-91206.rs:13:5
|
|
|
|
|
LL | inner.clear();
|
|
| ^^^^^^^^^^^^^ `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
|
|
|
|
help: consider specifying this binding's type
|
|
|
|
|
LL | let inner: &mut Vec<usize> = client.get_inner_ref();
|
|
| +++++++++++++++++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|