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