summary refs log tree commit diff
path: root/src/test/ui/coherence/coherence-unsafe-trait-object-impl.stderr
blob: 93a06fccbf53caca50ae8c6fae56b7f585adb173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.