-
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 #86343 - JohnTitor:issue-85581, r=estebank
Do not emit invalid suggestions on multiple mutable borrow errors Fixes #85581
- Loading branch information
Showing
4 changed files
with
58 additions
and
8 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
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,15 @@ | ||
// Regression test of #85581. | ||
// Checks not to suggest to add `;` when the second mutable borrow | ||
// is in the first's scope. | ||
|
||
use std::collections::BinaryHeap; | ||
|
||
fn foo(heap: &mut BinaryHeap<i32>) { | ||
match heap.peek_mut() { | ||
Some(_) => { heap.pop(); }, | ||
//~^ ERROR: cannot borrow `*heap` as mutable more than once at a time | ||
None => (), | ||
} | ||
} | ||
|
||
fn main() {} |
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,17 @@ | ||
error[E0499]: cannot borrow `*heap` as mutable more than once at a time | ||
--> $DIR/issue-85581.rs:9:22 | ||
| | ||
LL | match heap.peek_mut() { | ||
| --------------- | ||
| | | ||
| first mutable borrow occurs here | ||
| a temporary with access to the first borrow is created here ... | ||
LL | Some(_) => { heap.pop(); }, | ||
| ^^^^ second mutable borrow occurs here | ||
... | ||
LL | } | ||
| - ... and the first borrow might be used here, when that temporary is dropped and runs the destructor for type `Option<PeekMut<'_, i32>>` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0499`. |