]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-unsafe-trait-object-impl.stderr
Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen
[rust.git] / src / test / ui / coherence / coherence-unsafe-trait-object-impl.stderr
1 error[E0277]: the trait bound `&dyn Trait: Trait` is not satisfied
2   --> $DIR/coherence-unsafe-trait-object-impl.rs:15:13
3    |
4 LL | fn takes_t<S: Trait>(s: S) {
5    |               ----- required by this bound in `takes_t`
6 ...
7 LL |     takes_t(t);
8    |             ^ the trait `Trait` is not implemented for `&dyn Trait`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.