2021-09-18 15:52:43 -05:00
error[E0004]: non-exhaustive patterns: `_` not covered
2021-12-06 15:17:22 -06:00
--> $DIR/doc-hidden-non-exhaustive.rs:15:11
2021-09-18 15:52:43 -05:00
|
2021-10-27 19:58:23 -05:00
LL | match HiddenEnum::A {
| ^^^^^^^^^^^^^ pattern `_` not covered
2021-12-15 20:28:09 -06:00
|
2022-03-12 14:38:44 -06:00
note: `HiddenEnum` defined here
--> $DIR/auxiliary/hidden.rs:1:1
|
2022-02-13 09:27:59 -06:00
LL | pub enum HiddenEnum {
| ^^^^^^^^^^^^^^^^^^^
2021-10-27 19:58:23 -05:00
= note: the matched value is of type `HiddenEnum`
2022-03-12 14:38:44 -06:00
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 ~ HiddenEnum::B => {}
LL + _ => todo!()
|
2021-09-18 15:52:43 -05:00
2022-09-02 22:01:35 -05:00
error[E0004]: non-exhaustive patterns: `HiddenEnum::B` not covered
2021-12-06 15:17:22 -06:00
--> $DIR/doc-hidden-non-exhaustive.rs:21:11
2021-09-18 15:52:43 -05:00
|
2021-10-27 19:58:23 -05:00
LL | match HiddenEnum::A {
2022-09-02 22:01:35 -05:00
| ^^^^^^^^^^^^^ pattern `HiddenEnum::B` not covered
2021-09-18 15:52:43 -05:00
|
2022-03-12 14:38:44 -06:00
note: `HiddenEnum` defined here
2021-12-15 23:06:44 -06:00
--> $DIR/auxiliary/hidden.rs:3:5
|
2022-02-13 09:27:59 -06:00
LL | pub enum HiddenEnum {
| -------------------
LL | A,
LL | B,
| ^ not covered
2021-10-27 19:58:23 -05:00
= note: the matched value is of type `HiddenEnum`
2022-03-12 14:38:44 -06:00
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 ~ HiddenEnum::C => {}
2022-09-02 22:01:35 -05:00
LL + HiddenEnum::B => todo!()
2022-03-12 14:38:44 -06:00
|
2021-09-18 15:52:43 -05:00
2022-09-02 22:01:35 -05:00
error[E0004]: non-exhaustive patterns: `HiddenEnum::B` and `_` not covered
2021-12-06 15:17:22 -06:00
--> $DIR/doc-hidden-non-exhaustive.rs:27:11
2021-09-18 15:52:43 -05:00
|
2021-10-27 19:58:23 -05:00
LL | match HiddenEnum::A {
2022-09-02 22:01:35 -05:00
| ^^^^^^^^^^^^^ patterns `HiddenEnum::B` and `_` not covered
2021-09-18 15:52:43 -05:00
|
2022-03-12 14:38:44 -06:00
note: `HiddenEnum` defined here
2021-12-15 23:06:44 -06:00
--> $DIR/auxiliary/hidden.rs:3:5
|
2022-02-13 09:27:59 -06:00
LL | pub enum HiddenEnum {
| -------------------
LL | A,
LL | B,
| ^ not covered
2021-10-27 19:58:23 -05:00
= note: the matched value is of type `HiddenEnum`
2022-03-12 14:38:44 -06:00
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 ~ HiddenEnum::A => {}
2022-09-02 22:01:35 -05:00
LL + HiddenEnum::B | _ => todo!()
2022-03-12 14:38:44 -06:00
|
2021-09-18 15:52:43 -05:00
2022-09-02 22:01:35 -05:00
error[E0004]: non-exhaustive patterns: `Some(HiddenEnum::B)` and `Some(_)` not covered
2021-12-06 15:17:22 -06:00
--> $DIR/doc-hidden-non-exhaustive.rs:32:11
2021-09-18 15:52:43 -05:00
|
LL | match None {
2022-09-02 22:01:35 -05:00
| ^^^^ patterns `Some(HiddenEnum::B)` and `Some(_)` not covered
2021-09-18 15:52:43 -05:00
|
2022-03-12 14:38:44 -06:00
note: `Option<HiddenEnum>` defined here
2021-12-15 23:06:44 -06:00
--> $SRC_DIR/core/src/option.rs:LL:COL
2022-12-12 09:25:04 -06:00
::: $SRC_DIR/core/src/option.rs:LL:COL
|
= note: not covered
2021-10-27 19:58:23 -05:00
= note: the matched value is of type `Option<HiddenEnum>`
2022-03-12 14:38:44 -06:00
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 ~ Some(HiddenEnum::A) => {}
2022-09-02 22:01:35 -05:00
LL + Some(HiddenEnum::B) | Some(_) => todo!()
2022-03-12 14:38:44 -06:00
|
2021-09-18 15:52:43 -05:00
2022-09-02 22:01:35 -05:00
error[E0004]: non-exhaustive patterns: `InCrate::C` not covered
2021-12-06 15:17:22 -06:00
--> $DIR/doc-hidden-non-exhaustive.rs:38:11
|
2022-03-12 14:38:44 -06:00
LL | match InCrate::A {
2022-09-02 22:01:35 -05:00
| ^^^^^^^^^^ pattern `InCrate::C` not covered
2021-12-06 15:17:22 -06:00
|
2022-03-12 14:38:44 -06:00
note: `InCrate` defined here
--> $DIR/doc-hidden-non-exhaustive.rs:11:5
|
LL | enum InCrate {
| -------
...
LL | C,
| ^ not covered
2021-12-06 15:17:22 -06:00
= note: the matched value is of type `InCrate`
2022-03-12 14:38:44 -06:00
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 ~ InCrate::B => {}
2022-09-02 22:01:35 -05:00
LL + InCrate::C => todo!()
2022-03-12 14:38:44 -06:00
|
2021-12-06 15:17:22 -06:00
error: aborting due to 5 previous errors
2021-09-18 15:52:43 -05:00
For more information about this error, try `rustc --explain E0004`.