mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
14 lines
609 B
Plaintext
14 lines
609 B
Plaintext
|
error[E0277]: the trait bound `Foo: std::clone::Clone` is not satisfied
|
||
|
--> $DIR/traits-issue-71136.rs:5:5
|
||
|
|
|
||
|
LL | the_foos: Vec<Foo>,
|
||
|
| ^^^^^^^^^^^^^^^^^^ expected an implementor of trait `std::clone::Clone`
|
||
|
|
|
||
|
= note: required because of the requirements on the impl of `std::clone::Clone` for `std::vec::Vec<Foo>`
|
||
|
= note: required by `std::clone::Clone::clone`
|
||
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0277`.
|