]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-enum-fields.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / wf / wf-enum-fields.stderr
CommitLineData
b7449926 1error[E0277]: the trait bound `A: std::marker::Copy` is not satisfied
0731742a 2 --> $DIR/wf-enum-fields.rs:12:17
b7449926
XL
3 |
4LL | SomeVariant(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
8note: required by `IsCopy`
0731742a 9 --> $DIR/wf-enum-fields.rs:7:1
b7449926
XL
10 |
11LL | struct IsCopy<T:Copy> {
12 | ^^^^^^^^^^^^^^^^^^^^^
13
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0277`.