]> git.lizzy.rs Git - rust.git/blob - src/test/ui/inference/issue-72616.stderr
Rollup merge of #100861 - RalfJung:const-ice, r=oli-obk
[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: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0283`.