2021-04-23 22:09:26 +00:00
|
|
|
error[E0277]: the trait bound `T: Copy` is not satisfied
|
2021-12-11 02:20:41 +00:00
|
|
|
--> $DIR/issue-33017.rs:12:27
|
2021-04-23 22:09:26 +00:00
|
|
|
|
|
|
|
|
LL | default type Output = Self;
|
2021-12-11 02:20:41 +00:00
|
|
|
| ^^^^ the trait `Copy` is not implemented for `T`
|
2021-04-23 22:09:26 +00:00
|
|
|
|
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `UncheckedCopy::Output`
|
|
|
|
--> $DIR/issue-33017.rs:8:31
|
|
|
|
|
|
|
|
|
LL | type Output: From<Self> + Copy + Into<Self>;
|
|
|
|
| ^^^^ required by this bound in `UncheckedCopy::Output`
|
2021-04-23 22:09:26 +00:00
|
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
|
|
|
|
LL | impl<T: std::marker::Copy> UncheckedCopy for T {
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++++++++++++++
|
2021-04-23 22:09:26 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|