summaryrefslogtreecommitdiffstats
path: root/tests/ui/mut/mut-cross-borrowing.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/mut/mut-cross-borrowing.stderr')
-rw-r--r--tests/ui/mut/mut-cross-borrowing.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/mut/mut-cross-borrowing.stderr b/tests/ui/mut/mut-cross-borrowing.stderr
index ee739d628..8401827e5 100644
--- a/tests/ui/mut/mut-cross-borrowing.stderr
+++ b/tests/ui/mut/mut-cross-borrowing.stderr
@@ -4,7 +4,7 @@ error[E0308]: mismatched types
LL | f(x)
| - ^
| | |
- | | expected `&mut isize`, found struct `Box`
+ | | expected `&mut isize`, found `Box<{integer}>`
| | help: consider mutably borrowing here: `&mut x`
| arguments to this function are incorrect
|