]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/partialeq_help.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / partialeq_help.stderr
index c813b64d40b58ddde391f8f185b286898dba871d..04eb9770c468db5dc5bf33a51add59291ef7bd61 100644 (file)
@@ -1,8 +1,8 @@
-error[E0277]: the trait bound `&T: std::cmp::PartialEq<T>` is not satisfied
-  --> $DIR/partialeq_help.rs:12:7
+error[E0277]: can't compare `&T` with `T`
+  --> $DIR/partialeq_help.rs:2:7
    |
 LL |     a == b; //~ ERROR E0277
-   |       ^^ can't compare `&T` with `T`
+   |       ^^ no implementation for `&T == T`
    |
    = help: the trait `std::cmp::PartialEq<T>` is not implemented for `&T`
    = help: consider adding a `where &T: std::cmp::PartialEq<T>` bound