summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-107860.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/issue-107860.stderr')
-rw-r--r--tests/ui/suggestions/issue-107860.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/suggestions/issue-107860.stderr b/tests/ui/suggestions/issue-107860.stderr
new file mode 100644
index 000000000..92e3cf8c4
--- /dev/null
+++ b/tests/ui/suggestions/issue-107860.stderr
@@ -0,0 +1,12 @@
+error[E0308]: mismatched types
+ --> $DIR/issue-107860.rs:3:36
+ |
+LL | async fn str<T>(T: &str) -> &str { &str }
+ | ^^^^ expected `&str`, found `&fn(&str) -> ... {str::<...>}`
+ |
+ = note: expected reference `&str`
+ found reference `&for<'a> fn(&'a str) -> impl Future<Output = &'a str> {str::<_>}`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.