]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/traits/suggest-deferences/multiple-1.stderr
Rollup merge of #87260 - antoyo:libgccjit-codegen, r=Mark-Simulacrum
[rust.git] / src / test / ui / traits / suggest-deferences / multiple-1.stderr
index f98cc54227f681a959e09de93f3984088498aec7..040fbb3e3e699813fae132946c7076eddfcd92d2 100644 (file)
@@ -1,11 +1,16 @@
 error[E0277]: the trait bound `&mut Baz: Happy` is not satisfied
   --> $DIR/multiple-1.rs:52:9
    |
-LL | fn foo<T>(_: T) where T: Happy {}
-   |                          ----- required by this bound in `foo`
-...
 LL |     foo(&mut baz);
-   |         ^^^^^^^^ the trait `Happy` is not implemented for `&mut Baz`
+   |     --- ^^^^^^^^ the trait `Happy` is not implemented for `&mut Baz`
+   |     |
+   |     required by a bound introduced by this call
+   |
+note: required by a bound in `foo`
+  --> $DIR/multiple-1.rs:45:26
+   |
+LL | fn foo<T>(_: T) where T: Happy {}
+   |                          ^^^^^ required by this bound in `foo`
 
 error: aborting due to previous error