blob: dfccd4865686e8ef9c5a2d2b80304f1e64ae2a34 [file] [log] [blame]
error[E0277]: the trait bound `T: std::marker::Copy` is not satisfied
--> $DIR/wf-trait-associated-type-bound.rs:10:17
|
LL | trait ExtraCopy<T:Copy> { }
| ----------------------- required by `ExtraCopy`
...
LL | type Type1: ExtraCopy<T>;
| ^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `T`
|
help: consider restricting this type parameter with `T: std::marker::Copy`
--> $DIR/wf-trait-associated-type-bound.rs:9:17
|
LL | trait SomeTrait<T> {
| ^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.