]> git.proxmox.com Git - rustc.git/blob - src/test/ui/coherence/coherence-unsafe-trait-object-impl.stderr
New upstream version 1.44.1+dfsg1
[rustc.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`.