2021-11-28 12:46:06 -06:00
error[E0282]: type annotations needed
2021-10-17 18:41:57 -05:00
--> $DIR/issue-69455.rs:29:20
2020-02-25 04:15:23 -06:00
|
LL | println!("{}", 23u64.test(xs.iter().sum()));
2022-02-14 06:25:26 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the associated function `new_display`
2021-11-28 12:46:06 -06:00
|
2022-06-20 21:25:52 -05:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2022-02-14 06:25:26 -06:00
help: consider specifying the generic argument
|
LL | println!("{}", 23u64.test(xs.iter().sum())::<T>);
| +++++
2020-02-25 04:15:23 -06:00
2021-10-01 08:05:17 -05:00
error[E0283]: type annotations needed
2022-02-14 06:25:26 -06:00
--> $DIR/issue-69455.rs:29:41
2021-10-01 08:05:17 -05:00
|
LL | println!("{}", 23u64.test(xs.iter().sum()));
2022-08-16 19:21:40 -05:00
| ---- ^^^ cannot infer type of the type parameter `S` declared on the associated function `sum`
| |
| required by a bound introduced by this call
2021-10-01 08:05:17 -05:00
|
note: multiple `impl`s satisfying `u64: Test<_>` found
--> $DIR/issue-69455.rs:11:1
|
LL | impl Test<u32> for u64 {
| ^^^^^^^^^^^^^^^^^^^^^^
...
LL | impl Test<u64> for u64 {
| ^^^^^^^^^^^^^^^^^^^^^^
2022-02-14 06:25:26 -06:00
help: consider specifying the generic argument
2021-10-01 08:05:17 -05:00
|
LL | println!("{}", 23u64.test(xs.iter().sum::<S>()));
| +++++
error: aborting due to 2 previous errors
2020-02-25 04:15:23 -06:00
2021-11-28 12:46:06 -06:00
Some errors have detailed explanations: E0282, E0283.
For more information about an error, try `rustc --explain E0282`.