-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #85823 - fee1-dead:borrowck-0, r=jackh726
Do not suggest ampmut if rhs is already mutable Removes invalid suggestion in #85765, although it should highlight the user type instead of the local variable. Looking at the comments of this line: https://github.com/rust-lang/rust/blob/84b1005bfd22e2cb2a4c13b0b81958fe72628354/compiler/rustc_mir_build/src/build/matches/mod.rs#L2107 It was intentionally set to `None`, causing it to highlight the local variable instead. I am not sure if I will be able to fix it. Fixes #85765
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
fn main() { | ||
let mut test = Vec::new(); | ||
let rofl: &Vec<Vec<i32>> = &mut test; | ||
//~^ HELP consider changing this to be a mutable reference | ||
rofl.push(Vec::new()); | ||
//~^ ERROR cannot borrow `*rofl` as mutable, as it is behind a `&` reference | ||
//~| NOTE `rofl` is a `&` reference, so the data it refers to cannot be borrowed as mutable | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
error[E0596]: cannot borrow `*rofl` as mutable, as it is behind a `&` reference | ||
--> $DIR/issue-85765.rs:5:5 | ||
| | ||
LL | let rofl: &Vec<Vec<i32>> = &mut test; | ||
| ---- help: consider changing this to be a mutable reference: `&mut Vec<Vec<i32>>` | ||
LL | | ||
LL | rofl.push(Vec::new()); | ||
| ^^^^ `rofl` 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`. |