summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-85581.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/issue-85581.rs')
-rw-r--r--src/test/ui/borrowck/issue-85581.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/borrowck/issue-85581.rs b/src/test/ui/borrowck/issue-85581.rs
deleted file mode 100644
index ccc120c54..000000000
--- a/src/test/ui/borrowck/issue-85581.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// 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() {}