summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-107860.stderr
blob: 92e3cf8c43b3bff49ef086a45bc870c834e8ca61 (plain)
1
2
3
4
5
6
7
8
9
10
11
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`.