]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/partialeq_help.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / partialeq_help.stderr
index c813b64d40b58ddde391f8f185b286898dba871d..6decbef1af4a266e4e6ae6bfda138aeac61e269d 100644 (file)
@@ -1,11 +1,10 @@
-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`
+LL |     a == b;
+   |       ^^ 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
+   = help: the trait `PartialEq<T>` is not implemented for `&T`
 
 error: aborting due to previous error