2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: the trait bound `U: Copy` is not satisfied
|
2020-01-29 16:55:37 -08:00
|
|
|
--> $DIR/wf-inherent-impl-method-where-clause.rs:12:27
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-01-18 14:57:56 -08:00
|
|
|
LL | fn foo(self) where T: ExtraCopy<U>
|
2020-09-02 10:40:56 +03:00
|
|
|
| ^^^^^^^^^^^^ the trait `Copy` is not implemented for `U`
|
2019-12-26 13:43:33 +01:00
|
|
|
|
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `ExtraCopy`
|
|
|
|
--> $DIR/wf-inherent-impl-method-where-clause.rs:7:19
|
|
|
|
|
|
|
|
|
LL | trait ExtraCopy<T:Copy> { }
|
|
|
|
| ^^^^ required by this bound in `ExtraCopy`
|
2020-03-13 19:28:14 -07:00
|
|
|
help: consider restricting type parameter `U`
|
2019-12-26 13:43:33 +01:00
|
|
|
|
|
2021-03-30 17:56:39 +08:00
|
|
|
LL | impl<T,U: std::marker::Copy> Foo<T,U> {
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|