rust/src/test/ui/wf/wf-enum-fields-struct-variant.stderr

18 lines
555 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `A: Copy` is not satisfied
--> $DIR/wf-enum-fields-struct-variant.rs:13:12
2018-08-08 07:28:26 -05:00
|
LL | struct IsCopy<T:Copy> {
2020-04-06 00:15:06 -05:00
| ---- required by this bound in `IsCopy`
...
2019-03-09 06:03:44 -06:00
LL | f: IsCopy<A>
| ^^^^^^^^^ the trait `Copy` is not implemented for `A`
|
help: consider restricting type parameter `A`
|
LL | enum AnotherEnum<A: std::marker::Copy> {
| ^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.