]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-obj-type-trait.stderr
Rollup merge of #105843 - compiler-errors:sugg-const, r=lcnr
[rust.git] / src / test / ui / wf / wf-in-obj-type-trait.stderr
1 error[E0277]: the trait bound `T: Copy` is not satisfied
2   --> $DIR/wf-in-obj-type-trait.rs:11:19
3    |
4 LL |     x: dyn Object<MustBeCopy<T>>
5    |                   ^^^^^^^^^^^^^ the trait `Copy` is not implemented for `T`
6    |
7 note: required by a bound in `MustBeCopy`
8   --> $DIR/wf-in-obj-type-trait.rs:5:21
9    |
10 LL | struct MustBeCopy<T:Copy> {
11    |                     ^^^^ required by this bound in `MustBeCopy`
12 help: consider restricting type parameter `T`
13    |
14 LL | struct Bar<T: std::marker::Copy> {
15    |             +++++++++++++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.