rust/tests/ui/issues/issue-12028.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
539 B
Plaintext
Raw Normal View History

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);
| ^^^^^^^^^^^^
|
= 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`.