2022-06-25 10:42:23 -07:00
|
|
|
error[E0284]: type annotations needed
|
2019-08-09 18:43:30 +01:00
|
|
|
--> $DIR/issue-12028.rs:27:14
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | self.input_stream(&mut stream);
|
2022-06-25 10:42:23 -07: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 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-05-27 19:37:20 -04:00
|
|
|
For more information about this error, try `rustc --explain E0284`.
|