2021-11-25 10:33:01 -06:00
|
|
|
struct TestClient;
|
|
|
|
|
|
|
|
impl TestClient {
|
|
|
|
fn get_inner_ref(&self) -> &Vec<usize> {
|
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let client = TestClient;
|
|
|
|
let inner = client.get_inner_ref();
|
2023-02-03 12:53:27 -06:00
|
|
|
//~^ HELP consider specifying this binding's type
|
2021-11-25 10:33:01 -06:00
|
|
|
inner.clear();
|
|
|
|
//~^ ERROR cannot borrow `*inner` as mutable, as it is behind a `&` reference [E0596]
|
2022-06-27 22:23:24 -05:00
|
|
|
//~| NOTE `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
2021-11-25 10:33:01 -06:00
|
|
|
}
|