1
- error: expected a pattern, found a method call
2
- --> $DIR/pat- recover-exprs.rs:3:9
1
+ error: expected one of `=>`, `@`, `if`, or `|`, found `.`
2
+ --> $DIR/recover-pat- exprs.rs:10:10
3
3
|
4
- LL | u8::MAX.abs() => (),
5
- | ^^^^^^^^^^^^^ method calls are not allowed in patterns
6
-
7
- error: expected a pattern, found a method call
8
- --> $DIR/pat-recover-exprs.rs:5:9
9
- |
10
- LL | x.sqrt() @ .. => (),
11
- | ^^^^^^^^ method calls are not allowed in patterns
4
+ LL | x.0e0 => (),
5
+ | ^ expected one of `=>`, `@`, `if`, or `|`
12
6
13
7
error: left-hand side of `@` must be a binding
14
- --> $DIR/pat- recover-exprs.rs:5 :9
8
+ --> $DIR/recover-pat- exprs.rs:48 :9
15
9
|
16
10
LL | x.sqrt() @ .. => (),
17
11
| --------^^^--
@@ -21,56 +15,320 @@ LL | x.sqrt() @ .. => (),
21
15
|
22
16
= note: bindings are `x`, `mut x`, `ref x`, and `ref mut x`
23
17
24
- error: expected a pattern, found a method call
25
- --> $DIR/pat-recover-exprs.rs:8:17
18
+ error: expected one of `)`, `,`, or `|`, found `+`
19
+ --> $DIR/recover-pat-exprs.rs:62:12
20
+ |
21
+ LL | (_ + 1) => (),
22
+ | ^ expected one of `)`, `,`, or `|`
23
+
24
+ error: expected one of `)`, `,`, `@`, or `|`, found `*`
25
+ --> $DIR/recover-pat-exprs.rs:69:28
26
+ |
27
+ LL | let b = matches!(x, (x * x | x.f()) | x[0]);
28
+ | ^ expected one of `)`, `,`, `@`, or `|`
29
+ --> $SRC_DIR/core/src/macros/mod.rs:LL:COL
30
+ |
31
+ = note: while parsing argument for this `pat` macro fragment
32
+
33
+ error: expected a pattern, found an expression
34
+ --> $DIR/recover-pat-exprs.rs:5:9
35
+ |
36
+ LL | x.y => (),
37
+ | ^^^ arbitrary expressions are not allowed in patterns
38
+ |
39
+ = help: extract the expression into a `const` and refer to it
40
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
41
+ |
42
+ LL | const { x.y } => (),
43
+ | +++++++ +
44
+
45
+ error: expected a pattern, found an expression
46
+ --> $DIR/recover-pat-exprs.rs:6:9
47
+ |
48
+ LL | x.0 => (),
49
+ | ^^^ arbitrary expressions are not allowed in patterns
50
+ |
51
+ = help: extract the expression into a `const` and refer to it
52
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
53
+ |
54
+ LL | const { x.0 } => (),
55
+ | +++++++ +
56
+
57
+ error: expected a pattern, found an expression
58
+ --> $DIR/recover-pat-exprs.rs:7:9
59
+ |
60
+ LL | x._0 => (),
61
+ | ^^^^ arbitrary expressions are not allowed in patterns
62
+ |
63
+ = help: extract the expression into a `const` and refer to it
64
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
65
+ |
66
+ LL | const { x._0 } => (),
67
+ | +++++++ +
68
+
69
+ error: expected a pattern, found an expression
70
+ --> $DIR/recover-pat-exprs.rs:8:9
71
+ |
72
+ LL | x.0.1 => (),
73
+ | ^^^^^ arbitrary expressions are not allowed in patterns
74
+ |
75
+ = help: extract the expression into a `const` and refer to it
76
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
77
+ |
78
+ LL | const { x.0.1 } => (),
79
+ | +++++++ +
80
+
81
+ error: expected a pattern, found an expression
82
+ --> $DIR/recover-pat-exprs.rs:9:9
83
+ |
84
+ LL | x.4.y.17.__z => (),
85
+ | ^^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
86
+ |
87
+ = help: extract the expression into a `const` and refer to it
88
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
89
+ |
90
+ LL | const { x.4.y.17.__z } => (),
91
+ | +++++++ +
92
+
93
+ error: expected a pattern, found an expression
94
+ --> $DIR/recover-pat-exprs.rs:17:9
95
+ |
96
+ LL | x.f() => (),
97
+ | ^^^^^ arbitrary expressions are not allowed in patterns
98
+ |
99
+ = help: extract the expression into a `const` and refer to it
100
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
101
+ |
102
+ LL | const { x.f() } => (),
103
+ | +++++++ +
104
+
105
+ error: expected a pattern, found an expression
106
+ --> $DIR/recover-pat-exprs.rs:18:9
107
+ |
108
+ LL | x._f() => (),
109
+ | ^^^^^^ arbitrary expressions are not allowed in patterns
110
+ |
111
+ = help: extract the expression into a `const` and refer to it
112
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
113
+ |
114
+ LL | const { x._f() } => (),
115
+ | +++++++ +
116
+
117
+ error: expected a pattern, found an expression
118
+ --> $DIR/recover-pat-exprs.rs:19:9
119
+ |
120
+ LL | x? => (),
121
+ | ^^ arbitrary expressions are not allowed in patterns
122
+ |
123
+ = help: extract the expression into a `const` and refer to it
124
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
125
+ |
126
+ LL | const { x? } => (),
127
+ | +++++++ +
128
+
129
+ error: expected a pattern, found an expression
130
+ --> $DIR/recover-pat-exprs.rs:20:9
131
+ |
132
+ LL | ().f() => (),
133
+ | ^^^^^^ arbitrary expressions are not allowed in patterns
134
+ |
135
+ = help: extract the expression into a `const` and refer to it
136
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
137
+ |
138
+ LL | const { ().f() } => (),
139
+ | +++++++ +
140
+
141
+ error: expected a pattern, found an expression
142
+ --> $DIR/recover-pat-exprs.rs:21:9
143
+ |
144
+ LL | (0, x)?.f() => (),
145
+ | ^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
146
+ |
147
+ = help: extract the expression into a `const` and refer to it
148
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
149
+ |
150
+ LL | const { (0, x)?.f() } => (),
151
+ | +++++++ +
152
+
153
+ error: expected a pattern, found an expression
154
+ --> $DIR/recover-pat-exprs.rs:22:9
155
+ |
156
+ LL | x.f().g() => (),
157
+ | ^^^^^^^^^ arbitrary expressions are not allowed in patterns
158
+ |
159
+ = help: extract the expression into a `const` and refer to it
160
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
161
+ |
162
+ LL | const { x.f().g() } => (),
163
+ | +++++++ +
164
+
165
+ error: expected a pattern, found an expression
166
+ --> $DIR/recover-pat-exprs.rs:23:9
167
+ |
168
+ LL | 0.f()?.g()?? => (),
169
+ | ^^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
170
+ |
171
+ = help: extract the expression into a `const` and refer to it
172
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
173
+ |
174
+ LL | const { 0.f()?.g()?? } => (),
175
+ | +++++++ +
176
+
177
+ error: expected a pattern, found an expression
178
+ --> $DIR/recover-pat-exprs.rs:30:9
179
+ |
180
+ LL | x as usize => (),
181
+ | ^^^^^^^^^^ arbitrary expressions are not allowed in patterns
182
+ |
183
+ = help: extract the expression into a `const` and refer to it
184
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
185
+ |
186
+ LL | const { x as usize } => (),
187
+ | +++++++ +
188
+
189
+ error: expected a pattern, found an expression
190
+ --> $DIR/recover-pat-exprs.rs:31:9
191
+ |
192
+ LL | 0 as usize => (),
193
+ | ^^^^^^^^^^ arbitrary expressions are not allowed in patterns
194
+ |
195
+ = help: extract the expression into a `const` and refer to it
196
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
197
+ |
198
+ LL | const { 0 as usize } => (),
199
+ | +++++++ +
200
+
201
+ error: expected a pattern, found an expression
202
+ --> $DIR/recover-pat-exprs.rs:32:9
203
+ |
204
+ LL | x.f().0.4 as f32 => (),
205
+ | ^^^^^^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
206
+ |
207
+ = help: extract the expression into a `const` and refer to it
208
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
209
+ |
210
+ LL | const { x.f().0.4 as f32 } => (),
211
+ | +++++++ +
212
+
213
+ error: expected a pattern, found an expression
214
+ --> $DIR/recover-pat-exprs.rs:39:9
215
+ |
216
+ LL | 1 + 1 => (),
217
+ | ^^^^^ arbitrary expressions are not allowed in patterns
218
+ |
219
+ = help: extract the expression into a `const` and refer to it
220
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
221
+ |
222
+ LL | const { 1 + 1 } => (),
223
+ | +++++++ +
224
+
225
+ error: expected a pattern, found an expression
226
+ --> $DIR/recover-pat-exprs.rs:40:9
227
+ |
228
+ LL | (1 + 2) * 3 => (),
229
+ | ^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
230
+ |
231
+ = help: extract the expression into a `const` and refer to it
232
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
233
+ |
234
+ LL | const { (1 + 2) * 3 } => (),
235
+ | +++++++ +
236
+
237
+ error: expected a pattern, found an expression
238
+ --> $DIR/recover-pat-exprs.rs:46:9
239
+ |
240
+ LL | u8::MAX.abs() => (),
241
+ | ^^^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
242
+ |
243
+ = help: extract the expression into a `const` and refer to it
244
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
245
+ |
246
+ LL | const { u8::MAX.abs() } => (),
247
+ | +++++++ +
248
+
249
+ error: expected a pattern, found an expression
250
+ --> $DIR/recover-pat-exprs.rs:48:9
251
+ |
252
+ LL | x.sqrt() @ .. => (),
253
+ | ^^^^^^^^ arbitrary expressions are not allowed in patterns
254
+ |
255
+ = help: extract the expression into a `const` and refer to it
256
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
257
+ |
258
+ LL | const { x.sqrt() } @ .. => (),
259
+ | +++++++ +
260
+
261
+ error: expected a pattern, found an expression
262
+ --> $DIR/recover-pat-exprs.rs:51:17
26
263
|
27
264
LL | z @ w @ v.u() => (),
28
- | ^^^^^ method calls are not allowed in patterns
265
+ | ^^^^^ arbitrary expressions are not allowed in patterns
266
+ |
267
+ = help: extract the expression into a `const` and refer to it
268
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
269
+ |
270
+ LL | z @ w @ const { v.u() } => (),
271
+ | +++++++ +
29
272
30
- error: expected a pattern, found a method call
31
- --> $DIR/pat- recover-exprs.rs:10 :9
273
+ error: expected a pattern, found an expression
274
+ --> $DIR/recover-pat- exprs.rs:53 :9
32
275
|
33
276
LL | y.ilog(3) => (),
34
- | ^^^^^^^^^ method calls are not allowed in patterns
277
+ | ^^^^^^^^^ arbitrary expressions are not allowed in patterns
278
+ |
279
+ = help: extract the expression into a `const` and refer to it
280
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
281
+ |
282
+ LL | const { y.ilog(3) } => (),
283
+ | +++++++ +
35
284
36
285
error: expected a pattern, found an expression
37
- --> $DIR/pat- recover-exprs.rs:12 :9
286
+ --> $DIR/recover-pat- exprs.rs:55 :9
38
287
|
39
288
LL | n + 1 => (),
40
289
| ^^^^^ arbitrary expressions are not allowed in patterns
290
+ |
291
+ = help: extract the expression into a `const` and refer to it
292
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
293
+ |
294
+ LL | const { n + 1 } => (),
295
+ | +++++++ +
41
296
42
297
error: expected a pattern, found an expression
43
- --> $DIR/pat- recover-exprs.rs:14 :10
298
+ --> $DIR/recover-pat- exprs.rs:57 :10
44
299
|
45
300
LL | ("".f() + 14 * 8) => (),
46
301
| ^^^^^^^^^^^^^^^ arbitrary expressions are not allowed in patterns
302
+ |
303
+ = help: extract the expression into a `const` and refer to it
304
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
305
+ |
306
+ LL | (const { "".f() + 14 * 8 }) => (),
307
+ | +++++++ +
47
308
48
309
error: expected a pattern, found an expression
49
- --> $DIR/pat- recover-exprs.rs:17 :9
310
+ --> $DIR/recover-pat- exprs.rs:60 :9
50
311
|
51
312
LL | f?() => (),
52
313
| ^^^^ arbitrary expressions are not allowed in patterns
53
-
54
- error: expected one of `)`, `,`, or `|`, found `+`
55
- --> $DIR/pat-recover-exprs.rs:19:12
56
314
|
57
- LL | (_ + 1) => (),
58
- | ^ expected one of `)`, `,`, or `|`
315
+ = help: extract the expression into a `const` and refer to it
316
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
317
+ |
318
+ LL | const { f?() } => (),
319
+ | +++++++ +
59
320
60
321
error: expected a pattern, found an expression
61
- --> $DIR/pat- recover-exprs.rs:23 :9
322
+ --> $DIR/recover-pat- exprs.rs:66 :9
62
323
|
63
324
LL | let 1 + 1 = 2;
64
325
| ^^^^^ arbitrary expressions are not allowed in patterns
65
-
66
- error: expected one of `)`, `,`, `@`, or `|`, found `*`
67
- --> $DIR/pat-recover-exprs.rs:26:28
68
326
|
69
- LL | let b = matches!(x, (x * x | x.f()) | x[0]);
70
- | ^ expected one of `)`, `,`, `@`, or `|`
71
- --> $SRC_DIR/core/src/macros/mod.rs:LL:COL
327
+ = help: extract the expression into a `const` and refer to it
328
+ help: wrap the expression in a inline const (requires `#![feature(inline_const)]`)
72
329
|
73
- = note: while parsing argument for this `pat` macro fragment
330
+ LL | let const { 1 + 1 } = 2;
331
+ | +++++++ +
74
332
75
- error: aborting due to 11 previous errors
333
+ error: aborting due to 29 previous errors
76
334
0 commit comments