]> git.proxmox.com Git - rustc.git/blame - src/test/ui/derives/derives-span-Hash-enum.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / derives / derives-span-Hash-enum.stderr
CommitLineData
1b1a35ee 1error[E0277]: the trait bound `Error: Hash` is not satisfied
ba9703b0 2 --> $DIR/derives-span-Hash-enum.rs:8:6
b7449926 3 |
136023e0
XL
4LL | #[derive(Hash)]
5 | ---- in this derive macro expansion
6...
532ac7d7 7LL | Error
1b1a35ee 8 | ^^^^^ the trait `Hash` is not implemented for `Error`
b7449926 9 |
17df50a5 10 = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
04454e1e
FG
11help: consider annotating `Error` with `#[derive(Hash)]`
12 |
13LL | #[derive(Hash)]
14 |
b7449926
XL
15
16error: aborting due to previous error
17
18For more information about this error, try `rustc --explain E0277`.