blob: 6bfca64c4439f36f637b73b7175cf0b27be138c3 [file] [log] [blame]
error[E0277]: the trait bound `<Self as SomeTrait>::Type1: std::marker::Copy` is not satisfied
--> $DIR/wf-trait-associated-type-trait.rs:21:5
|
LL | type Type2 = IsCopy<Self::Type1>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `<Self as SomeTrait>::Type1`
|
= help: consider adding a `where <Self as SomeTrait>::Type1: std::marker::Copy` bound
note: required by `IsCopy`
--> $DIR/wf-trait-associated-type-trait.rs:17:1
|
LL | struct IsCopy<T:Copy> { x: T }
| ^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.