]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/derive-trait-for-method-call.stderr
Rollup merge of #105694 - ouz-a:issue_105689, r=estebank
[rust.git] / src / test / ui / suggestions / derive-trait-for-method-call.stderr
1 error[E0599]: the method `test` exists for struct `Foo<Enum, CloneEnum>`, but its trait bounds were not satisfied
2   --> $DIR/derive-trait-for-method-call.rs:28:15
3    |
4 LL | enum Enum {
5    | ---------
6    | |
7    | doesn't satisfy `Enum: Clone`
8    | doesn't satisfy `Enum: Default`
9 ...
10 LL | enum CloneEnum {
11    | -------------- doesn't satisfy `CloneEnum: Default`
12 ...
13 LL | struct Foo<X, Y> (X, Y);
14    | ---------------- method `test` not found for this struct
15 ...
16 LL |     let y = x.test();
17    |               ^^^^ method cannot be called on `Foo<Enum, CloneEnum>` due to unsatisfied trait bounds
18    |
19    = note: the following trait bounds were not satisfied:
20            `Enum: Clone`
21            `Enum: Default`
22            `CloneEnum: Default`
23 note: the trait `Default` must be implemented
24   --> $SRC_DIR/core/src/default.rs:LL:COL
25 help: consider annotating `Enum` with `#[derive(Clone)]`
26    |
27 LL | #[derive(Clone)]
28    |
29
30 error[E0599]: the method `test` exists for struct `Foo<Struct, CloneStruct>`, but its trait bounds were not satisfied
31   --> $DIR/derive-trait-for-method-call.rs:34:15
32    |
33 LL | struct Struct {
34    | -------------
35    | |
36    | doesn't satisfy `Struct: Clone`
37    | doesn't satisfy `Struct: Default`
38 ...
39 LL | struct CloneStruct {
40    | ------------------ doesn't satisfy `CloneStruct: Default`
41 ...
42 LL | struct Foo<X, Y> (X, Y);
43    | ---------------- method `test` not found for this struct
44 ...
45 LL |     let y = x.test();
46    |               ^^^^ method cannot be called on `Foo<Struct, CloneStruct>` due to unsatisfied trait bounds
47    |
48    = note: the following trait bounds were not satisfied:
49            `Struct: Clone`
50            `Struct: Default`
51            `CloneStruct: Default`
52 help: consider annotating `CloneStruct` with `#[derive(Default)]`
53    |
54 LL | #[derive(Default)]
55    |
56 help: consider annotating `Struct` with `#[derive(Clone, Default)]`
57    |
58 LL | #[derive(Clone, Default)]
59    |
60
61 error[E0599]: the method `test` exists for struct `Foo<Vec<Enum>, Instant>`, but its trait bounds were not satisfied
62   --> $DIR/derive-trait-for-method-call.rs:40:15
63    |
64 LL | struct Foo<X, Y> (X, Y);
65    | ---------------- method `test` not found for this struct
66 ...
67 LL |     let y = x.test();
68    |               ^^^^ method cannot be called on `Foo<Vec<Enum>, Instant>` due to unsatisfied trait bounds
69   --> $SRC_DIR/std/src/time.rs:LL:COL
70    |
71    = note: doesn't satisfy `Instant: Default`
72   --> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
73    |
74    = note: doesn't satisfy `Vec<Enum>: Clone`
75    |
76    = note: the following trait bounds were not satisfied:
77            `Vec<Enum>: Clone`
78            `Instant: Default`
79
80 error: aborting due to 3 previous errors
81
82 For more information about this error, try `rustc --explain E0599`.