summaryrefslogtreecommitdiff
path: root/tests/ui/mismatched_types/dont-point-return-on-E0308.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/mismatched_types/dont-point-return-on-E0308.stderr')
-rw-r--r--tests/ui/mismatched_types/dont-point-return-on-E0308.stderr10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/ui/mismatched_types/dont-point-return-on-E0308.stderr b/tests/ui/mismatched_types/dont-point-return-on-E0308.stderr
index 13942682d28..7be94ef4ad6 100644
--- a/tests/ui/mismatched_types/dont-point-return-on-E0308.stderr
+++ b/tests/ui/mismatched_types/dont-point-return-on-E0308.stderr
@@ -2,10 +2,8 @@ error[E0308]: mismatched types
--> $DIR/dont-point-return-on-E0308.rs:11:11
|
LL | f(());
- | - ^^
- | | |
- | | expected `&()`, found `()`
- | | help: consider borrowing here: `&()`
+ | - ^^ expected `&()`, found `()`
+ | |
| arguments to this function are incorrect
|
note: function defined here
@@ -13,6 +11,10 @@ note: function defined here
|
LL | async fn f(_: &()) {}
| ^ ------
+help: consider borrowing here
+ |
+LL | f(&());
+ | +
error: aborting due to previous error