rust/tests/ui/traits/issue-71136.stderr

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

20 lines
678 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `Foo: Clone` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/issue-71136.rs:5:5
2020-05-03 04:11:23 -05:00
|
LL | #[derive(Clone)]
| ----- in this derive macro expansion
LL | struct FooHolster {
2020-05-03 04:11:23 -05:00
LL | the_foos: Vec<Foo>,
| ^^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `Foo`
2020-05-03 04:11:23 -05:00
|
= note: required for `Vec<Foo>` to implement `Clone`
= note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
2022-03-31 09:58:45 -05:00
help: consider annotating `Foo` with `#[derive(Clone)]`
|
LL | #[derive(Clone)]
|
2020-05-03 04:11:23 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.