]> git.lizzy.rs Git - rust.git/blob - src/test/ui/inference/issue-72616.stderr
da1a7ccdee15e5b8e974d74856c8ffa36c4e8629
[rust.git] / src / test / ui / inference / issue-72616.stderr
1 error[E0283]: type annotations needed
2   --> $DIR/issue-72616.rs:20:37
3    |
4 LL |         if String::from("a") == "a".try_into().unwrap() {}
5    |                              --     ^^^^^^^^
6    |                              |
7    |                              type must be known at this point
8    |
9    = note: multiple `impl`s satisfying `String: PartialEq<_>` found in the `alloc` crate:
10            - impl PartialEq for String;
11            - impl<'a, 'b> PartialEq<&'a str> for String;
12            - impl<'a, 'b> PartialEq<Cow<'a, str>> for String;
13            - impl<'a, 'b> PartialEq<str> for String;
14 help: try using a fully qualified path to specify the expected types
15    |
16 LL |         if String::from("a") == <&str as TryInto<T>>::try_into("a").unwrap() {}
17    |                                 +++++++++++++++++++++++++++++++   ~
18
19 error[E0283]: type annotations needed
20   --> $DIR/issue-72616.rs:20:37
21    |
22 LL |         if String::from("a") == "a".try_into().unwrap() {}
23    |                                     ^^^^^^^^
24    |
25    = note: multiple `impl`s satisfying `_: TryFrom<&str>` found in the following crates: `core`, `std`:
26            - impl<> TryFrom<&str> for std::sys_common::net::LookupHost;
27            - impl<T, U> TryFrom<U> for T
28              where U: Into<T>;
29    = note: required for `&str` to implement `TryInto<_>`
30 help: try using a fully qualified path to specify the expected types
31    |
32 LL |         if String::from("a") == <&str as TryInto<T>>::try_into("a").unwrap() {}
33    |                                 +++++++++++++++++++++++++++++++   ~
34
35 error: aborting due to 2 previous errors
36
37 For more information about this error, try `rustc --explain E0283`.