]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-12028.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-12028.stderr
CommitLineData
064997fb 1error[E0284]: type annotations needed
e1599b0c 2 --> $DIR/issue-12028.rs:27:14
8faf50e0 3 |
532ac7d7 4LL | self.input_stream(&mut stream);
064997fb
FG
5 | ^^^^^^^^^^^^
6 |
7 = note: cannot satisfy `<_ as StreamHasher>::S == <H as StreamHasher>::S`
8help: try using a fully qualified path to specify the expected types
9 |
10LL | <u8 as StreamHash<H>>::input_stream(self, &mut stream);
11 | ++++++++++++++++++++++++++++++++++++ ~
8faf50e0
XL
12
13error: aborting due to previous error
14
dc9dc135 15For more information about this error, try `rustc --explain E0284`.