rust/tests/ui/const-generics/infer/uninferred-consts.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
416 B
Plaintext
Raw Normal View History

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`
|
2022-02-14 06:25:26 -06:00
help: consider specifying the generic arguments
|
2022-02-14 06:25:26 -06:00
LL | Foo.foo::<A, B>();
| ++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0282`.