blob: 0ec6ac9c22e5363778206a8fa53513c5f0ed18cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0282]: type annotations needed
--> $DIR/uninferred-consts.rs:9:9
|
LL | Foo.foo();
| ^^^ cannot infer the value of the const parameter `A` declared on the method `foo`
|
help: consider specifying the generic arguments
|
LL | Foo.foo::<A, B>();
| ++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0282`.
|