2023-01-13 00:27:58 +00:00
|
|
|
error[E0284]: type annotations needed
|
|
|
|
--> $DIR/issue-69455.rs:29:41
|
2020-02-25 10:15:23 +00:00
|
|
|
|
|
|
|
|
LL | println!("{}", 23u64.test(xs.iter().sum()));
|
2023-02-21 21:11:08 +00:00
|
|
|
| ---- ^^^ cannot infer type of the type parameter `S` declared on the method `sum`
|
2023-01-13 00:27:58 +00:00
|
|
|
| |
|
|
|
|
| type must be known at this point
|
2021-11-28 18:46:06 +00:00
|
|
|
|
|
2023-01-13 00:27:58 +00:00
|
|
|
= note: cannot satisfy `<u64 as Test<_>>::Output == _`
|
2022-02-14 12:25:26 +00:00
|
|
|
help: consider specifying the generic argument
|
|
|
|
|
|
2023-01-13 00:27:58 +00:00
|
|
|
LL | println!("{}", 23u64.test(xs.iter().sum::<S>()));
|
|
|
|
| +++++
|
2020-02-25 10:15:23 +00:00
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
error[E0283]: type annotations needed
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-69455.rs:29:41
|
2021-10-01 13:05:17 +00:00
|
|
|
|
|
|
|
|
LL | println!("{}", 23u64.test(xs.iter().sum()));
|
2023-02-21 21:11:08 +00:00
|
|
|
| ---- ^^^ cannot infer type of the type parameter `S` declared on the method `sum`
|
2022-08-17 00:21:40 +00:00
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2021-10-01 13:05:17 +00: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 12:25:26 +00:00
|
|
|
help: consider specifying the generic argument
|
2021-10-01 13:05:17 +00:00
|
|
|
|
|
|
|
|
LL | println!("{}", 23u64.test(xs.iter().sum::<S>()));
|
|
|
|
| +++++
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-02-25 10:15:23 +00:00
|
|
|
|
2023-01-13 00:27:58 +00:00
|
|
|
Some errors have detailed explanations: E0283, E0284.
|
|
|
|
For more information about an error, try `rustc --explain E0283`.
|