]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/traits-issue-71136.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / traits / traits-issue-71136.stderr
1 error[E0277]: the trait bound `Foo: Clone` is not satisfied
2 --> $DIR/traits-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 a derive macro (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`.