Skip to content

Commit

Permalink
Add test demonstrating no more ICE
Browse files Browse the repository at this point in the history
  • Loading branch information
compiler-errors committed Nov 25, 2021
1 parent 718a3b1 commit 69d1917
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/test/ui/borrowck/issue-91206.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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]
}
12 changes: 12 additions & 0 deletions src/test/ui/borrowck/issue-91206.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
error[E0596]: cannot borrow `*inner` as mutable, as it is behind a `&` reference
--> $DIR/issue-91206.rs:13:5
|
LL | let inner = client.get_inner_ref();
| ----- help: consider changing this to be a mutable reference: `&mut Vec<usize>`
LL |
LL | inner.clear();
| ^^^^^^^^^^^^^ `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable

error: aborting due to previous error

For more information about this error, try `rustc --explain E0596`.

0 comments on commit 69d1917

Please sign in to comment.