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