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

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

16 lines
541 B
Plaintext
Raw Normal View History

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