mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
16 lines
363 B
Rust
16 lines
363 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();
|
|
//~^ HELP consider changing this to be a mutable reference
|
|
inner.clear();
|
|
//~^ ERROR cannot borrow `*inner` as mutable, as it is behind a `&` reference [E0596]
|
|
}
|