]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/issue-71136.stderr
Rollup merge of #82179 - mbartlett21:patch-5, r=joshtriplett
[rust.git] / src / test / ui / traits / issue-71136.stderr
1 error[E0277]: the trait bound `Foo: Clone` is not satisfied
2   --> $DIR/issue-71136.rs:5:5
3    |
4 LL |     the_foos: Vec<Foo>,
5    |     ^^^^^^^^^^^^^^^^^^ expected an implementor of trait `Clone`
6    |
7    = note: required because of the requirements on the impl of `Clone` for `Vec<Foo>`
8    = note: required by `clone`
9    = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0277`.