summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-47646.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/issue-47646.stderr')
-rw-r--r--tests/ui/borrowck/issue-47646.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/borrowck/issue-47646.stderr b/tests/ui/borrowck/issue-47646.stderr
index 84cf9237a..d82e1f908 100644
--- a/tests/ui/borrowck/issue-47646.stderr
+++ b/tests/ui/borrowck/issue-47646.stderr
@@ -2,7 +2,7 @@ error[E0502]: cannot borrow `heap` as immutable because it is also borrowed as m
--> $DIR/issue-47646.rs:9:30
|
LL | let borrow = heap.peek_mut();
- | --------------- mutable borrow occurs here
+ | ---- mutable borrow occurs here
LL |
LL | match (borrow, ()) {
| ------------ a temporary with access to the mutable borrow is created here ...