2020-08-09 00:01:19 -05:00
|
|
|
error[E0282]: type annotations needed
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/uninferred-consts.rs:9:9
|
2020-08-09 00:01:19 -05:00
|
|
|
|
|
|
|
|
LL | Foo.foo();
|
2023-02-21 15:11:08 -06:00
|
|
|
| ^^^ cannot infer the value of the const parameter `A` declared on the method `foo`
|
2020-10-08 15:23:01 -05:00
|
|
|
|
|
2022-02-14 06:25:26 -06:00
|
|
|
help: consider specifying the generic arguments
|
2020-10-08 15:23:01 -05:00
|
|
|
|
|
2022-02-14 06:25:26 -06:00
|
|
|
LL | Foo.foo::<A, B>();
|
|
|
|
| ++++++++
|
2020-08-09 00:01:19 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-08-09 00:01:19 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|