2022-09-03 03:01:35 +00:00
|
|
|
error[E0005]: refutable pattern in local binding: `Helper::T(_, _)` not covered
|
2019-12-11 09:51:28 -05:00
|
|
|
--> $DIR/empty-never-array.rs:10:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-12-16 05:06:44 +00:00
|
|
|
LL | let Helper::U(u) = Helper::T(t, []);
|
2022-09-03 03:01:35 +00:00
|
|
|
| ^^^^^^^^^^^^ pattern `Helper::T(_, _)` not covered
|
2019-10-09 12:25:48 -07:00
|
|
|
|
|
|
|
|
= 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
|
2021-12-16 05:06:44 +00:00
|
|
|
note: `Helper<T, U>` defined here
|
|
|
|
--> $DIR/empty-never-array.rs:4:5
|
|
|
|
|
|
|
|
|
LL | enum Helper<T, U> {
|
|
|
|
| ------
|
|
|
|
LL | T(T, [!; 0]),
|
|
|
|
| ^ not covered
|
2020-03-27 06:44:30 +01:00
|
|
|
= note: the matched value is of type `Helper<T, U>`
|
2019-10-09 12:25:48 -07:00
|
|
|
help: you might want to use `if let` to ignore the variant that isn't matched
|
|
|
|
|
|
2022-03-08 05:54:38 +00:00
|
|
|
LL | let u = if let Helper::U(u) = Helper::T(t, []) { u } else { todo!() };
|
|
|
|
| ++++++++++ ++++++++++++++++++++++
|
2022-05-16 06:27:31 +02:00
|
|
|
help: alternatively, you might want to use let else to handle the variant that isn't matched
|
2019-10-09 12:25:48 -07:00
|
|
|
|
|
2022-03-08 05:54:38 +00:00
|
|
|
LL | let Helper::U(u) = Helper::T(t, []) else { todo!() };
|
|
|
|
| ++++++++++++++++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-12-27 17:53:00 +00:00
|
|
|
error: aborting due to previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-12-27 17:53:00 +00:00
|
|
|
For more information about this error, try `rustc --explain E0005`.
|