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