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