rust/src/test/ui/const-generics/infer/method-chain.full.stderr

15 lines
507 B
Plaintext
Raw Normal View History

error[E0282]: type annotations needed
2020-11-17 04:44:21 -06:00
--> $DIR/method-chain.rs:20:33
|
2020-09-14 02:45:02 -05:00
LL | Foo.bar().bar().bar().bar().baz();
| ^^^ cannot infer the value of const parameter `N` declared on the associated function `baz`
|
help: consider specifying the const argument
|
LL | Foo.bar().bar().bar().bar().baz::<N>();
| ~~~~~~~~
error: aborting due to previous error
For more information about this error, try `rustc --explain E0282`.