2020-08-09 01:19:57 -05:00
|
|
|
error[E0282]: type annotations needed
|
2021-08-27 11:04:57 -05:00
|
|
|
--> $DIR/cannot-infer-const-args.rs:6:5
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
|
LL | foo();
|
2020-09-23 03:44:11 -05:00
|
|
|
| ^^^ cannot infer the value of const parameter `X` declared on the function `foo`
|
2020-10-08 15:23:01 -05:00
|
|
|
|
|
|
|
|
help: consider specifying the const argument
|
|
|
|
|
|
|
|
|
LL | foo::<X>();
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~
|
2020-08-09 01:19:57 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|