blob: c813b64d40b58ddde391f8f185b286898dba871d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0277]: the trait bound `&T: std::cmp::PartialEq<T>` is not satisfied
--> $DIR/partialeq_help.rs:12:7
|
LL | a == b; //~ ERROR E0277
| ^^ can't compare `&T` with `T`
|
= help: the trait `std::cmp::PartialEq<T>` is not implemented for `&T`
= help: consider adding a `where &T: std::cmp::PartialEq<T>` bound
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.
|