]> git.lizzy.rs Git - rust.git/blob - tests/ui/specialization/issue-33017.stderr
Rollup merge of #107306 - compiler-errors:correct-sugg-for-closure-arg-needs-borrow...
[rust.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`.