]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-Clone-struct.stderr
Rollup merge of #87307 - michaelwoerister:pgo-unwind-msvc, r=nagisa
[rust.git] / src / test / ui / derives / derives-span-Clone-struct.stderr
1 error[E0277]: the trait bound `Error: Clone` is not satisfied
2   --> $DIR/derives-span-Clone-struct.rs:8:5
3    |
4 LL | #[derive(Clone)]
5    |          ----- in this derive macro expansion
6 LL | struct Struct {
7 LL |     x: Error
8    |     ^^^^^^^^ the trait `Clone` is not implemented for `Error`
9    |
10 note: required by `clone`
11   --> $SRC_DIR/core/src/clone.rs:LL:COL
12    |
13 LL |     fn clone(&self) -> Self;
14    |     ^^^^^^^^^^^^^^^^^^^^^^^^
15    = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.