]> git.proxmox.com Git - rustc.git/blob - tests/ui/specialization/issue-33017.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / specialization / issue-33017.stderr
1 error[E0277]: the trait bound `T: Copy` is not satisfied
2 --> $DIR/issue-33017.rs:12:27
3 |
4 LL | default type Output = Self;
5 | ^^^^ the trait `Copy` is not implemented for `T`
6 |
7 note: required by a bound in `UncheckedCopy::Output`
8 --> $DIR/issue-33017.rs:8:31
9 |
10 LL | type Output: From<Self> + Copy + Into<Self>;
11 | ^^^^ required by this bound in `UncheckedCopy::Output`
12 help: consider restricting type parameter `T`
13 |
14 LL | impl<T: std::marker::Copy> UncheckedCopy for T {
15 | +++++++++++++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.