summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-91206.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/issue-91206.stderr')
-rw-r--r--tests/ui/borrowck/issue-91206.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/borrowck/issue-91206.stderr b/tests/ui/borrowck/issue-91206.stderr
index 6653d4978..30f836565 100644
--- a/tests/ui/borrowck/issue-91206.stderr
+++ b/tests/ui/borrowck/issue-91206.stderr
@@ -2,7 +2,7 @@ error[E0596]: cannot borrow `*inner` as mutable, as it is behind a `&` reference
--> $DIR/issue-91206.rs:13:5
|
LL | inner.clear();
- | ^^^^^^^^^^^^^ `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable
+ | ^^^^^ `inner` is a `&` reference, so the data it refers to cannot be borrowed as mutable
|
help: consider specifying this binding's type
|