]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union/union-derive-clone.mirunsafeck.stderr
use gathered body_owners in par_body_owners
[rust.git] / src / test / ui / union / union-derive-clone.mirunsafeck.stderr
1 error[E0277]: the trait bound `U1: Copy` is not satisfied
2   --> $DIR/union-derive-clone.rs:6:10
3    |
4 LL | #[derive(Clone)]
5    |          ^^^^^ the trait `Copy` is not implemented for `U1`
6    |
7 note: required by a bound in `AssertParamIsCopy`
8   --> $SRC_DIR/core/src/clone.rs:LL:COL
9    |
10 LL | pub struct AssertParamIsCopy<T: Copy + ?Sized> {
11    |                                 ^^^^ required by this bound in `AssertParamIsCopy`
12    = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
13 help: consider annotating `U1` with `#[derive(Copy)]`
14    |
15 LL | #[derive(Copy)]
16    |
17
18 error[E0599]: the method `clone` exists for union `U5<CloneNoCopy>`, but its trait bounds were not satisfied
19   --> $DIR/union-derive-clone.rs:38:15
20    |
21 LL | union U5<T> {
22    | -----------
23    | |
24    | method `clone` not found for this
25    | doesn't satisfy `U5<CloneNoCopy>: Clone`
26 ...
27 LL | struct CloneNoCopy;
28    | ------------------- doesn't satisfy `CloneNoCopy: Copy`
29 ...
30 LL |     let w = u.clone();
31    |               ^^^^^ method cannot be called on `U5<CloneNoCopy>` due to unsatisfied trait bounds
32    |
33 note: trait bound `CloneNoCopy: Copy` was not satisfied
34   --> $DIR/union-derive-clone.rs:28:10
35    |
36 LL | #[derive(Clone, Copy)]
37    |          ^^^^^ unsatisfied trait bound introduced in this `derive` macro
38    = note: the following trait bounds were not satisfied:
39            `CloneNoCopy: Copy`
40            which is required by `U5<CloneNoCopy>: Clone`
41 help: consider annotating `CloneNoCopy` with `#[derive(Clone, Copy)]`
42    |
43 LL | #[derive(Clone, Copy)]
44    |
45
46 error: aborting due to 2 previous errors
47
48 Some errors have detailed explanations: E0277, E0599.
49 For more information about an error, try `rustc --explain E0277`.