2017-12-10 13:47:55 -06:00
|
|
|
error[E0277]: the trait bound `&T: std::cmp::PartialEq<T>` is not satisfied
|
|
|
|
--> $DIR/partialeq_help.rs:12:7
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | a == b; //~ ERROR E0277
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^ 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
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0277"
|