rust/src/test/ui/specialization/issue-33017.stderr

18 lines
608 B
Plaintext
Raw Normal View History

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