2021-10-01 13:05:17 +00:00
|
|
|
error[E0283]: type annotations needed
|
|
|
|
--> $DIR/multidispatch-convert-ambig-dest.rs:26:5
|
|
|
|
|
|
|
|
|
LL | test(22, std::default::Default::default());
|
2022-08-17 00:21:40 +00:00
|
|
|
| ^^^^ -------------------------------- type must be known at this point
|
2022-08-16 06:27:22 +00:00
|
|
|
| |
|
|
|
|
| cannot infer type of the type parameter `U` declared on the function `test`
|
2022-05-20 04:49:41 +00:00
|
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
note: multiple `impl`s satisfying `i32: Convert<_>` found
|
|
|
|
--> $DIR/multidispatch-convert-ambig-dest.rs:8:1
|
|
|
|
|
|
|
|
|
LL | impl Convert<i8> for i32 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
...
|
|
|
|
LL | impl Convert<i16> for i32 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
note: required by a bound in `test`
|
|
|
|
--> $DIR/multidispatch-convert-ambig-dest.rs:21:11
|
|
|
|
|
|
|
|
|
LL | fn test<T,U>(_: T, _: U)
|
2023-02-21 05:21:07 +00:00
|
|
|
| ---- required by a bound in this function
|
2021-10-01 13:05:17 +00:00
|
|
|
LL | where T : Convert<U>
|
|
|
|
| ^^^^^^^^^^ required by this bound in `test`
|
2022-08-16 06:27:22 +00:00
|
|
|
help: consider specifying the generic arguments
|
2021-10-01 13:05:17 +00:00
|
|
|
|
|
2022-08-16 06:27:22 +00:00
|
|
|
LL | test::<i32, U>(22, std::default::Default::default());
|
|
|
|
| ++++++++++
|
2021-10-01 13:05:17 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2023-08-14 13:09:53 +00:00
|
|
|
For more information about this error, try `rustc --explain E0283`.
|