]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-unsafe-trait-object-impl.stderr
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / 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 |     takes_t(t);
5    |     ------- ^ the trait `Trait` is not implemented for `&dyn Trait`
6    |     |
7    |     required by a bound introduced by this call
8    |
9 note: required by a bound in `takes_t`
10   --> $DIR/coherence-unsafe-trait-object-impl.rs:10:15
11    |
12 LL | fn takes_t<S: Trait>(s: S) {
13    |               ^^^^^ required by this bound in `takes_t`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.