summaryrefslogtreecommitdiffstats
path: root/tests/ui/mut
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/mut')
-rw-r--r--tests/ui/mut/mut-cross-borrowing.stderr10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/ui/mut/mut-cross-borrowing.stderr b/tests/ui/mut/mut-cross-borrowing.stderr
index 8401827e5..8a3076db9 100644
--- a/tests/ui/mut/mut-cross-borrowing.stderr
+++ b/tests/ui/mut/mut-cross-borrowing.stderr
@@ -2,10 +2,8 @@ error[E0308]: mismatched types
--> $DIR/mut-cross-borrowing.rs:7:7
|
LL | f(x)
- | - ^
- | | |
- | | expected `&mut isize`, found `Box<{integer}>`
- | | help: consider mutably borrowing here: `&mut x`
+ | - ^ expected `&mut isize`, found `Box<{integer}>`
+ | |
| arguments to this function are incorrect
|
= note: expected mutable reference `&mut isize`
@@ -15,6 +13,10 @@ note: function defined here
|
LL | fn f(_: &mut isize) {}
| ^ -------------
+help: consider mutably borrowing here
+ |
+LL | f(&mut x)
+ | ++++
error: aborting due to previous error