rust/tests/ui/wf/wf-struct-field.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
617 B
Plaintext
Raw Normal View History

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