summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/impl_hash_with_borrow_str_and_bytes.stderr
blob: afc35ef98459b2df70e504d78f92d655143eae0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
error: the semantics of `Borrow<T>` around `Hash` can't be satisfied when both `Borrow<str>` and `Borrow<[u8]>` are implemented
  --> $DIR/impl_hash_with_borrow_str_and_bytes.rs:10:6
   |
LL | impl Hash for ExampleType {
   |      ^^^^
   |
   = note: the `Borrow` semantics require that `Hash` must behave the same for all implementations of Borrow<T>
   = note: however, the hash implementations of a string (`str`) and the bytes of a string `[u8]` do not behave the same ...
   = note: ... as (`hash("abc") != hash("abc".as_bytes())`
   = help: consider either removing one of the  `Borrow` implementations (`Borrow<str>` or `Borrow<[u8]>`) ...
   = help: ... or not implementing `Hash` for this type
   = note: `-D clippy::impl-hash-borrow-with-str-and-bytes` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::impl_hash_borrow_with_str_and_bytes)]`

error: the semantics of `Borrow<T>` around `Hash` can't be satisfied when both `Borrow<str>` and `Borrow<[u8]>` are implemented
  --> $DIR/impl_hash_with_borrow_str_and_bytes.rs:73:10
   |
LL | #[derive(Hash)]
   |          ^^^^
   |
   = note: the `Borrow` semantics require that `Hash` must behave the same for all implementations of Borrow<T>
   = note: however, the hash implementations of a string (`str`) and the bytes of a string `[u8]` do not behave the same ...
   = note: ... as (`hash("abc") != hash("abc".as_bytes())`
   = help: consider either removing one of the  `Borrow` implementations (`Borrow<str>` or `Borrow<[u8]>`) ...
   = help: ... or not implementing `Hash` for this type
   = note: this error originates in the derive macro `Hash` (in Nightly builds, run with -Z macro-backtrace for more info)

error: the semantics of `Borrow<T>` around `Hash` can't be satisfied when both `Borrow<str>` and `Borrow<[u8]>` are implemented
  --> $DIR/impl_hash_with_borrow_str_and_bytes.rs:117:6
   |
LL | impl Hash for GenericExampleType2<String> {
   |      ^^^^
   |
   = note: the `Borrow` semantics require that `Hash` must behave the same for all implementations of Borrow<T>
   = note: however, the hash implementations of a string (`str`) and the bytes of a string `[u8]` do not behave the same ...
   = note: ... as (`hash("abc") != hash("abc".as_bytes())`
   = help: consider either removing one of the  `Borrow` implementations (`Borrow<str>` or `Borrow<[u8]>`) ...
   = help: ... or not implementing `Hash` for this type

error: aborting due to 3 previous errors