]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/derives-span-Hash-tuple-struct.stderr
Auto merge of #107828 - compiler-errors:rollup-gyj6dgj, r=compiler-errors
[rust.git] / tests / ui / derives / derives-span-Hash-tuple-struct.stderr
1 error[E0277]: the trait bound `Error: Hash` is not satisfied
2   --> $DIR/derives-span-Hash-tuple-struct.rs:8:5
3    |
4 LL | #[derive(Hash)]
5    |          ---- in this derive macro expansion
6 LL | struct Struct(
7 LL |     Error
8    |     ^^^^^ the trait `Hash` is not implemented for `Error`
9    |
10    = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)
11 help: consider annotating `Error` with `#[derive(Hash)]`
12    |
13 LL | #[derive(Hash)]
14    |
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.