summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/usefulness/non-exhaustive-defined-here.stderr
blob: 678c9b2ab58c3df7d42a7a249f81512832a1fe79 (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
error[E0004]: non-exhaustive patterns: `E::B` and `E::C` not covered
  --> $DIR/non-exhaustive-defined-here.rs:38:11
   |
LL |     match e1 {
   |           ^^ patterns `E::B` and `E::C` not covered
   |
note: `E` defined here
  --> $DIR/non-exhaustive-defined-here.rs:14:5
   |
LL | enum E {
   |      -
...
LL |     B,
   |     ^ not covered
...
LL |     C
   |     ^ not covered
   = note: the matched value is of type `E`
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 ~         E::A => {}
LL +         E::B | E::C => todo!()
   |

error[E0005]: refutable pattern in local binding: `E::B` and `E::C` not covered
  --> $DIR/non-exhaustive-defined-here.rs:44:9
   |
LL |     let E::A = e;
   |         ^^^^ patterns `E::B` and `E::C` not covered
   |
   = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
   = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
note: `E` defined here
  --> $DIR/non-exhaustive-defined-here.rs:14:5
   |
LL | enum E {
   |      -
...
LL |     B,
   |     ^ not covered
...
LL |     C
   |     ^ not covered
   = note: the matched value is of type `E`
help: you might want to use `if let` to ignore the variants that aren't matched
   |
LL |     if let E::A = e { todo!() }
   |     ++              ~~~~~~~~~~~

error[E0004]: non-exhaustive patterns: `&E::B` and `&E::C` not covered
  --> $DIR/non-exhaustive-defined-here.rs:52:11
   |
LL |     match e {
   |           ^ patterns `&E::B` and `&E::C` not covered
   |
note: `E` defined here
  --> $DIR/non-exhaustive-defined-here.rs:14:5
   |
LL | enum E {
   |      -
...
LL |     B,
   |     ^ not covered
...
LL |     C
   |     ^ not covered
   = note: the matched value is of type `&E`
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 ~         E::A => {}
LL +         &E::B | &E::C => todo!()
   |

error[E0005]: refutable pattern in local binding: `&E::B` and `&E::C` not covered
  --> $DIR/non-exhaustive-defined-here.rs:58:9
   |
LL |     let E::A = e;
   |         ^^^^ patterns `&E::B` and `&E::C` not covered
   |
   = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
   = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
note: `E` defined here
  --> $DIR/non-exhaustive-defined-here.rs:14:5
   |
LL | enum E {
   |      -
...
LL |     B,
   |     ^ not covered
...
LL |     C
   |     ^ not covered
   = note: the matched value is of type `&E`
help: you might want to use `if let` to ignore the variants that aren't matched
   |
LL |     if let E::A = e { todo!() }
   |     ++              ~~~~~~~~~~~

error[E0004]: non-exhaustive patterns: `&&mut &E::B` and `&&mut &E::C` not covered
  --> $DIR/non-exhaustive-defined-here.rs:66:11
   |
LL |     match e {
   |           ^ patterns `&&mut &E::B` and `&&mut &E::C` not covered
   |
note: `E` defined here
  --> $DIR/non-exhaustive-defined-here.rs:14:5
   |
LL | enum E {
   |      -
...
LL |     B,
   |     ^ not covered
...
LL |     C
   |     ^ not covered
   = note: the matched value is of type `&&mut &E`
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 ~         E::A => {}
LL +         &&mut &E::B | &&mut &E::C => todo!()
   |

error[E0005]: refutable pattern in local binding: `&&mut &E::B` and `&&mut &E::C` not covered
  --> $DIR/non-exhaustive-defined-here.rs:72:9
   |
LL |     let E::A = e;
   |         ^^^^ patterns `&&mut &E::B` and `&&mut &E::C` not covered
   |
   = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
   = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
note: `E` defined here
  --> $DIR/non-exhaustive-defined-here.rs:14:5
   |
LL | enum E {
   |      -
...
LL |     B,
   |     ^ not covered
...
LL |     C
   |     ^ not covered
   = note: the matched value is of type `&&mut &E`
help: you might want to use `if let` to ignore the variants that aren't matched
   |
LL |     if let E::A = e { todo!() }
   |     ++              ~~~~~~~~~~~

error[E0004]: non-exhaustive patterns: `Opt::None` not covered
  --> $DIR/non-exhaustive-defined-here.rs:92:11
   |
LL |     match e {
   |           ^ pattern `Opt::None` not covered
   |
note: `Opt` defined here
  --> $DIR/non-exhaustive-defined-here.rs:84:5
   |
LL | enum Opt {
   |      ---
...
LL |     None,
   |     ^^^^ not covered
   = note: the matched value is of type `Opt`
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 ~         Opt::Some(ref _x) => {}
LL +         Opt::None => todo!()
   |

error[E0005]: refutable pattern in local binding: `Opt::None` not covered
  --> $DIR/non-exhaustive-defined-here.rs:98:9
   |
LL |     let Opt::Some(ref _x) = e;
   |         ^^^^^^^^^^^^^^^^^ pattern `Opt::None` not covered
   |
   = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
   = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
note: `Opt` defined here
  --> $DIR/non-exhaustive-defined-here.rs:84:5
   |
LL | enum Opt {
   |      ---
...
LL |     None,
   |     ^^^^ not covered
   = note: the matched value is of type `Opt`
help: you might want to use `if let` to ignore the variant that isn't matched
   |
LL |     let _x = if let Opt::Some(ref _x) = e { _x } else { todo!() };
   |     +++++++++++                           +++++++++++++++++++++++
help: alternatively, you might want to use let else to handle the variant that isn't matched
   |
LL |     let Opt::Some(ref _x) = e else { todo!() };
   |                               ++++++++++++++++

error: aborting due to 8 previous errors

Some errors have detailed explanations: E0004, E0005.
For more information about an error, try `rustc --explain E0004`.