rust/src/test/ui/wf/wf-trait-superbound.stderr

18 lines
593 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `T: Copy` is not satisfied
--> $DIR/wf-trait-superbound.rs:9:21
2018-08-08 07:28:26 -05:00
|
LL | trait ExtraCopy<T:Copy> { }
2020-04-06 00:15:06 -05:00
| ---- required by this bound in `ExtraCopy`
LL |
LL | trait SomeTrait<T>: ExtraCopy<T> {
| ^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
|
help: consider restricting type parameter `T`
|
LL | trait SomeTrait<T: std::marker::Copy>: ExtraCopy<T> {
| +++++++++++++++++++
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.