]> git.proxmox.com Git - rustc.git/blob - src/test/ui/derives/derives-span-Clone-enum.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / derives / derives-span-Clone-enum.stderr
1 error[E0277]: the trait bound `Error: Clone` is not satisfied
2 --> $DIR/derives-span-Clone-enum.rs:9:6
3 |
4 LL | #[derive(Clone)]
5 | ----- in this derive macro expansion
6 ...
7 LL | Error
8 | ^^^^^ the trait `Clone` is not implemented for `Error`
9 |
10 = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
11 help: consider annotating `Error` with `#[derive(Clone)]`
12 |
13 LL | #[derive(Clone)]
14 |
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.