]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-trait-associated-type-trait.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / wf / wf-trait-associated-type-trait.stderr
1 error[E0277]: the trait bound `<Self as SomeTrait>::Type1: std::marker::Copy` is not satisfied
2   --> $DIR/wf-trait-associated-type-trait.rs:21:5
3    |
4 LL |     type Type2 = IsCopy<Self::Type1>;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `<Self as SomeTrait>::Type1`
6    |
7    = help: consider adding a `where <Self as SomeTrait>::Type1: std::marker::Copy` bound
8 note: required by `IsCopy`
9   --> $DIR/wf-trait-associated-type-trait.rs:17:1
10    |
11 LL | struct IsCopy<T:Copy> { x: T }
12    | ^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.