2020-10-23 07:10:19 +00:00
|
|
|
error[E0283]: type annotations needed
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-72616.rs:20:37
|
2020-10-23 07:10:19 +00:00
|
|
|
|
|
|
|
|
LL | if String::from("a") == "a".try_into().unwrap() {}
|
2022-06-25 16:28:27 +00:00
|
|
|
| -- ^^^^^^^^
|
|
|
|
| |
|
|
|
|
| type must be known at this point
|
2020-10-23 07:10:19 +00:00
|
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
= note: multiple `impl`s satisfying `String: PartialEq<_>` found in the `alloc` crate:
|
|
|
|
- impl PartialEq for String;
|
|
|
|
- impl<'a, 'b> PartialEq<&'a str> for String;
|
|
|
|
- impl<'a, 'b> PartialEq<Cow<'a, str>> for String;
|
|
|
|
- impl<'a, 'b> PartialEq<str> for String;
|
2022-02-14 12:25:26 +00:00
|
|
|
help: try using a fully qualified path to specify the expected types
|
|
|
|
|
|
|
|
|
LL | if String::from("a") == <&str as TryInto<T>>::try_into("a").unwrap() {}
|
|
|
|
| +++++++++++++++++++++++++++++++ ~
|
2020-10-23 07:10:19 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|