]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/coherence/coherence-unsafe-trait-object-impl.stderr
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / coherence-unsafe-trait-object-impl.stderr
index 93a06fccbf53caca50ae8c6fae56b7f585adb173..2e2dac288a1da9cd6131b10cd52b36185b4f264f 100644 (file)
@@ -1,11 +1,16 @@
 error[E0277]: the trait bound `&dyn Trait: Trait` is not satisfied
   --> $DIR/coherence-unsafe-trait-object-impl.rs:15:13
    |
-LL | fn takes_t<S: Trait>(s: S) {
-   |               ----- required by this bound in `takes_t`
-...
 LL |     takes_t(t);
-   |             ^ the trait `Trait` is not implemented for `&dyn Trait`
+   |     ------- ^ the trait `Trait` is not implemented for `&dyn Trait`
+   |     |
+   |     required by a bound introduced by this call
+   |
+note: required by a bound in `takes_t`
+  --> $DIR/coherence-unsafe-trait-object-impl.rs:10:15
+   |
+LL | fn takes_t<S: Trait>(s: S) {
+   |               ^^^^^ required by this bound in `takes_t`
 
 error: aborting due to previous error