os-rust/src/test/ui/wf/wf-struct-field.stderr

18 lines
541 B
Text
Raw Normal View History

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