mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

``` help: consider restricting type parameter `T` with traits `Copy` and `Trait` | LL | fn duplicate_custom<T: Copy + Trait>(t: S<T>) -> (S<T>, S<T>) { | ++++++++++++++ ``` ``` help: consider restricting type parameter `V` with trait `Copy` | LL | fn index<'a, K, V: std::marker::Copy>(map: &'a HashMap<K, V>, k: K) -> &'a V { | +++++++++++++++++++ ```
25 lines
968 B
Plaintext
25 lines
968 B
Plaintext
error[E0277]: the trait bound `T: Clone` is not satisfied
|
|
--> $DIR/global-cache-and-parallel-frontend.rs:15:17
|
|
|
|
|
LL | #[derive(Clone, Eq)]
|
|
| ^^ the trait `Clone` is not implemented for `T`
|
|
|
|
|
note: required for `Struct<T>` to implement `PartialEq`
|
|
--> $DIR/global-cache-and-parallel-frontend.rs:18:19
|
|
|
|
|
LL | impl<T: Clone, U> PartialEq<U> for Struct<T>
|
|
| ----- ^^^^^^^^^^^^ ^^^^^^^^^
|
|
| |
|
|
| unsatisfied trait bound introduced here
|
|
note: required by a bound in `Eq`
|
|
--> $SRC_DIR/core/src/cmp.rs:LL:COL
|
|
= note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
help: consider restricting type parameter `T` with trait `Clone`
|
|
|
|
|
LL | pub struct Struct<T: std::clone::Clone>(T);
|
|
| +++++++++++++++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|