]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-struct-field.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / wf / wf-struct-field.stderr
1 error[E0277]: the trait bound `A: std::marker::Copy` is not satisfied
2   --> $DIR/wf-struct-field.rs:22:5
3    |
4 LL |     data: IsCopy<A> //~ ERROR E0277
5    |     ^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `A`
6    |
7    = help: consider adding a `where A: std::marker::Copy` bound
8 note: required by `IsCopy`
9   --> $DIR/wf-struct-field.rs:17:1
10    |
11 LL | struct IsCopy<T:Copy> {
12    | ^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.