blob: 4be495da46b1f2030214657b177abef6f328d9e7 [file] [log] [blame] [edit]
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 1 previous error
For more information about this error, try `rustc --explain E0308`.