blob: 4be625ba90930f475c8ceff6470a339ea13e3a0f [file] [log] [blame]
error[E0282]: type annotations needed
--> $DIR/uninferred-consts.rs:14:9
|
LL | Foo.foo();
| ^^^ cannot infer the value of const parameter `A` declared on the associated function `foo`
|
help: consider specifying the const argument
|
LL | Foo.foo::<A>();
| ^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0282`.