@@ -58,8 +58,7 @@ LL | | x: Default::default(),
58
58
| | ------------------
59
59
LL | | y: 0,
60
60
| | - these are the same values the expansion of `#[derive(Default)]` would use
61
- LL | | }
62
- LL | | }
61
+ ... |
63
62
LL | | }
64
63
| |_^
65
64
|
@@ -76,8 +75,7 @@ LL | | fn default() -> Self {
76
75
LL | | E {
77
76
LL | | x: None,
78
77
| | ---- this is the same value the expansion of `#[derive(Default)]` would use
79
- LL | | }
80
- LL | | }
78
+ ... |
81
79
LL | | }
82
80
| |_^
83
81
|
@@ -111,8 +109,7 @@ LL | | fn default() -> Self {
111
109
LL | | G {
112
110
LL | | f: F::Unit,
113
111
| | ------- this is the same value the expansion of `#[derive(Default)]` would use
114
- LL | | }
115
- LL | | }
112
+ ... |
116
113
LL | | }
117
114
| |_^
118
115
|
@@ -133,8 +130,7 @@ LL | / impl Default for H {
133
130
LL | | fn default() -> Self {
134
131
LL | | H {
135
132
LL | | x: 1,
136
- LL | | }
137
- LL | | }
133
+ ... |
138
134
LL | | }
139
135
| |_^
140
136
|
@@ -163,7 +159,6 @@ LL | | fn default() -> Self {
163
159
LL | | I {
164
160
LL | | x: 1,
165
161
... |
166
- LL | | }
167
162
LL | | }
168
163
| |_^
169
164
|
@@ -180,8 +175,7 @@ LL | | fn default() -> Self {
180
175
LL | | J {
181
176
LL | | x: foo(), // fn call that isn't an assoc fn
182
177
| | ----- this is the same value the expansion of `#[derive(Default)]` would use
183
- LL | | }
184
- LL | | }
178
+ ... |
185
179
LL | | }
186
180
| |_^
187
181
|
@@ -198,8 +192,7 @@ LL | | fn default() -> Self {
198
192
LL | | L {
199
193
LL | | x: Vec::new(), // `<Vec as Default>::default()` just calls `Vec::new()`
200
194
| | ---------- this is the same value the expansion of `#[derive(Default)]` would use
201
- LL | | }
202
- LL | | }
195
+ ... |
203
196
LL | | }
204
197
| |_^
205
198
|
@@ -216,8 +209,7 @@ LL | | fn default() -> Self {
216
209
LL | | M {
217
210
LL | | x: N_CONST,
218
211
| | ------- this is the same value the expansion of `#[derive(Default)]` would use
219
- LL | | }
220
- LL | | }
212
+ ... |
221
213
LL | | }
222
214
| |_^
223
215
|
0 commit comments