2022-06-25 12:42:23 -05:00
|
|
|
error[E0284]: type annotations needed
|
2019-08-09 12:43:30 -05:00
|
|
|
--> $DIR/issue-12028.rs:27:14
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | self.input_stream(&mut stream);
|
2022-06-25 12:42:23 -05:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: cannot satisfy `<_ as StreamHasher>::S == <H as StreamHasher>::S`
|
|
|
|
help: try using a fully qualified path to specify the expected types
|
|
|
|
|
|
|
|
|
LL | <u8 as StreamHash<H>>::input_stream(self, &mut stream);
|
|
|
|
| ++++++++++++++++++++++++++++++++++++ ~
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-05-27 18:37:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0284`.
|