summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/mut-ref-reassignment.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/mut-ref-reassignment.stderr')
-rw-r--r--tests/ui/suggestions/mut-ref-reassignment.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/suggestions/mut-ref-reassignment.stderr b/tests/ui/suggestions/mut-ref-reassignment.stderr
index b86a04c7c..a225b34f8 100644
--- a/tests/ui/suggestions/mut-ref-reassignment.stderr
+++ b/tests/ui/suggestions/mut-ref-reassignment.stderr
@@ -32,8 +32,8 @@ LL | fn suggestion2(opt: &mut Option<String>) {
LL | opt = Some(String::new())
| ^^^^^^^^^^^^^^^^^^^ expected `&mut Option<String>`, found `Option<String>`
|
- = note: expected mutable reference `&mut Option<String>`
- found enum `Option<String>`
+ = note: expected mutable reference `&mut Option<_>`
+ found enum `Option<_>`
help: consider dereferencing here to assign to the mutably borrowed value
|
LL | *opt = Some(String::new())