]> git.lizzy.rs Git - rust.git/blob - tests/ui/wf/wf-trait-associated-type-bound.stderr
Rollup merge of #107389 - zvavybir:master, r=estebank
[rust.git] / tests / ui / wf / wf-trait-associated-type-bound.stderr
1 error[E0277]: the trait bound `T: Copy` is not satisfied
2   --> $DIR/wf-trait-associated-type-bound.rs:10:17
3    |
4 LL |     type Type1: ExtraCopy<T>;
5    |                 ^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
6    |
7 note: required by a bound in `ExtraCopy`
8   --> $DIR/wf-trait-associated-type-bound.rs:7:19
9    |
10 LL | trait ExtraCopy<T:Copy> { }
11    |                   ^^^^ required by this bound in `ExtraCopy`
12 help: consider restricting type parameter `T`
13    |
14 LL | trait SomeTrait<T: std::marker::Copy> {
15    |                  +++++++++++++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.