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