]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/traits/suggest-deferences/multiple-0.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / traits / suggest-deferences / multiple-0.stderr
index f76c73cbb6354c2ac86527c214ecd0a894c62bc6..efb3c7d123f70f2e8a613d5989a4f466c2020274 100644 (file)
@@ -1,14 +1,18 @@
 error[E0277]: the trait bound `&Baz: Happy` is not satisfied
   --> $DIR/multiple-0.rs:34:9
    |
-LL | fn foo<T>(_: T) where T: Happy {}
-   |                          ----- required by this bound in `foo`
-...
 LL |     foo(&baz);
-   |         ^^^^
-   |         |
-   |         the trait `Happy` is not implemented for `&Baz`
-   |         help: consider adding dereference here: `&***baz`
+   |     --- ^^^^
+   |     |   |
+   |     |   the trait `Happy` is not implemented for `&Baz`
+   |     |   help: consider dereferencing here: `&***baz`
+   |     required by a bound introduced by this call
+   |
+note: required by a bound in `foo`
+  --> $DIR/multiple-0.rs:30:26
+   |
+LL | fn foo<T>(_: T) where T: Happy {}
+   |                          ^^^^^ required by this bound in `foo`
 
 error: aborting due to previous error