rust/tests/ui/borrowck/issue-91206.rs
2023-01-11 09:32:08 +00:00

17 lines
455 B
Rust

struct TestClient;
impl TestClient {
fn get_inner_ref(&self) -> &Vec<usize> {
todo!()
}
}
fn main() {
let client = TestClient;
let inner = client.get_inner_ref();
//~^ NOTE consider changing this binding's type to be
inner.clear();
//~^ ERROR cannot borrow `*inner` as mutable, as it is behind a `&` reference [E0596]
//~| NOTE `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable
}