2020-08-09 06:19:57 +00:00
|
|
|
error[E0282]: type annotations needed
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/method-chain.rs:15:33
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
2020-09-14 09:45:02 +02:00
|
|
|
LL | Foo.bar().bar().bar().bar().baz();
|
2022-02-14 13:25:26 +01:00
|
|
|
| ^^^ cannot infer the value of the const parameter `N` declared on the associated function `baz`
|
2020-10-08 22:23:01 +02:00
|
|
|
|
|
2022-02-14 13:25:26 +01:00
|
|
|
help: consider specifying the generic argument
|
2020-10-08 22:23:01 +02:00
|
|
|
|
|
|
|
|
LL | Foo.bar().bar().bar().bar().baz::<N>();
|
2022-02-14 13:25:26 +01:00
|
|
|
| +++++
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|