summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/slice-patterns-exhaustiveness.stderr
blob: 5d1e170ae6c2b5739f4396f09cd1e09c2d55cb53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
error[E0004]: non-exhaustive patterns: `&[false, _]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:8:11
   |
LL |     match s2 {
   |           ^^ pattern `&[false, _]` not covered
   |
   = note: the matched value is of type `&[bool; 2]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [true, .., true] => {}
LL +         &[false, _] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:12:11
   |
LL |     match s3 {
   |           ^^ pattern `&[false, ..]` not covered
   |
   = note: the matched value is of type `&[bool; 3]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [true, .., true] => {}
LL +         &[false, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:16:11
   |
LL |     match s10 {
   |           ^^^ pattern `&[false, ..]` not covered
   |
   = note: the matched value is of type `&[bool; 10]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [true, .., true] => {}
LL +         &[false, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, true]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:25:11
   |
LL |     match s2 {
   |           ^^ pattern `&[false, true]` not covered
   |
   = note: the matched value is of type `&[bool; 2]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [.., false] => {}
LL +         &[false, true] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, .., true]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:30:11
   |
LL |     match s3 {
   |           ^^ pattern `&[false, .., true]` not covered
   |
   = note: the matched value is of type `&[bool; 3]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [.., false] => {}
LL +         &[false, .., true] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, .., true]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:35:11
   |
LL |     match s {
   |           ^ pattern `&[false, .., true]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [.., false] => {}
LL +         &[false, .., true] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[_, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:42:11
   |
LL |     match s {
   |           ^ pattern `&[_, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [] => {}
LL +         &[_, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[_, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:46:11
   |
LL |     match s {
   |           ^ pattern `&[_, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [_] => {}
LL +         &[_, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:51:11
   |
LL |     match s {
   |           ^ pattern `&[false, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [true, ..] => {}
LL +         &[false, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:56:11
   |
LL |     match s {
   |           ^ pattern `&[false, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [true, ..] => {}
LL +         &[false, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[_, .., false]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:62:11
   |
LL |     match s {
   |           ^ pattern `&[_, .., false]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [.., true] => {}
LL +         &[_, .., false] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[_, _, .., true]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:69:11
   |
LL |     match s {
   |           ^ pattern `&[_, _, .., true]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [.., false] => {}
LL +         &[_, _, .., true] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[true, _, .., _]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:76:11
   |
LL |     match s {
   |           ^ pattern `&[true, _, .., _]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         [false, .., false] => {}
LL +         &[true, _, .., _] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:85:11
   |
LL |     match s {
   |           ^ patterns `&[]` and `&[_, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
   |
LL ~         &[true] => {}
LL +         &[] | &[_, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:89:11
   |
LL |     match s {
   |           ^ patterns `&[]` and `&[_, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
   |
LL ~         CONST => {}
LL +         &[] | &[_, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:93:11
   |
LL |     match s {
   |           ^ patterns `&[]` and `&[_, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
   |
LL ~         &[false] => {}
LL +         &[] | &[_, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:98:11
   |
LL |     match s {
   |           ^ patterns `&[]` and `&[_, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
   |
LL ~         CONST => {}
LL +         &[] | &[_, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[_, _, ..]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:103:11
   |
LL |     match s {
   |           ^ pattern `&[_, _, ..]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         CONST => {}
LL +         &[_, _, ..] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:108:11
   |
LL |     match s {
   |           ^ pattern `&[false]` not covered
   |
   = note: the matched value is of type `&[bool]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         &[_, _, ..] => {}
LL +         &[false] => todo!()
   |

error[E0004]: non-exhaustive patterns: `&[false]` not covered
  --> $DIR/slice-patterns-exhaustiveness.rs:121:11
   |
LL |     match s1 {
   |           ^^ pattern `&[false]` not covered
   |
   = note: the matched value is of type `&[bool; 1]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   |
LL ~         CONST1 => {}
LL +         &[false] => todo!()
   |

error: aborting due to 20 previous errors

For more information about this error, try `rustc --explain E0004`.