rust/src/test/ui/pattern/usefulness/empty-match.normal.stderr

250 lines
7.8 KiB
Plaintext
Raw Normal View History

2020-11-12 17:28:55 +00:00
error: unreachable pattern
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:53:9
2019-12-03 15:57:04 +00:00
|
2020-11-12 17:28:55 +00:00
LL | _ => {},
| ^
2019-12-03 15:57:04 +00:00
|
2020-11-12 17:28:55 +00:00
note: the lint level is defined here
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:6:9
2020-11-12 17:28:55 +00:00
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
2019-12-03 15:57:04 +00:00
2020-11-12 17:28:55 +00:00
error: unreachable pattern
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:56:9
2020-11-12 17:24:42 +00:00
|
2020-11-12 17:28:55 +00:00
LL | _ if false => {},
| ^
error: unreachable pattern
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:63:9
2020-11-12 17:24:42 +00:00
|
2020-11-12 17:28:55 +00:00
LL | _ => {},
| ^
error: unreachable pattern
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:66:9
2020-11-16 21:13:00 +00:00
|
LL | _ if false => {},
| ^
error: unreachable pattern
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:73:9
2020-11-16 21:13:00 +00:00
|
LL | _ => {},
| ^
error: unreachable pattern
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:76:9
2020-11-12 17:28:55 +00:00
|
LL | _ if false => {},
| ^
2020-11-12 17:24:42 +00:00
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: type `u8` is non-empty
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:90:18
2019-11-30 15:51:26 +00:00
|
2019-12-03 15:57:04 +00:00
LL | match_empty!(0u8);
| ^^^
2019-11-30 15:51:26 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `u8`
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct` is non-empty
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:92:18
2019-11-30 15:51:26 +00:00
|
2019-12-03 19:04:01 +00:00
LL | struct NonEmptyStruct(bool);
| ---------------------------- `NonEmptyStruct` defined here
...
2019-12-03 15:57:04 +00:00
LL | match_empty!(NonEmptyStruct(true));
| ^^^^^^^^^^^^^^^^^^^^
2019-11-30 15:51:26 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyStruct`
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:94:18
2019-12-03 14:07:14 +00:00
|
2019-12-03 19:04:01 +00:00
LL | / union NonEmptyUnion1 {
LL | | foo: (),
LL | | }
| |_- `NonEmptyUnion1` defined here
...
LL | match_empty!((NonEmptyUnion1 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-12-03 14:07:14 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyUnion1`
2019-12-03 14:07:14 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:96:18
2019-12-03 14:07:14 +00:00
|
2019-12-03 19:04:01 +00:00
LL | / union NonEmptyUnion2 {
LL | | foo: (),
LL | | bar: (),
LL | | }
| |_- `NonEmptyUnion2` defined here
...
LL | match_empty!((NonEmptyUnion2 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-12-03 14:07:14 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyUnion2`
2019-12-03 14:07:14 +00:00
error[E0004]: non-exhaustive patterns: `Foo(_)` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:98:18
2019-11-30 15:51:26 +00:00
|
LL | / enum NonEmptyEnum1 {
LL | | Foo(bool),
| | --- not covered
LL | |
LL | |
2019-11-30 15:51:26 +00:00
LL | | }
| |_- `NonEmptyEnum1` defined here
...
2019-12-03 15:57:04 +00:00
LL | match_empty!(NonEmptyEnum1::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
2019-11-30 15:51:26 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyEnum1`
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: `Foo(_)` and `Bar` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:100:18
2019-11-30 15:51:26 +00:00
|
LL | / enum NonEmptyEnum2 {
LL | | Foo(bool),
| | --- not covered
LL | |
LL | |
2019-11-30 15:51:26 +00:00
LL | | Bar,
| | --- not covered
LL | |
LL | |
2019-11-30 15:51:26 +00:00
LL | | }
| |_- `NonEmptyEnum2` defined here
...
2019-12-03 15:57:04 +00:00
LL | match_empty!(NonEmptyEnum2::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
2019-11-30 15:51:26 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyEnum2`
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: `V1`, `V2`, `V3` and 2 more not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:102:18
2019-12-03 15:57:04 +00:00
|
LL | / enum NonEmptyEnum5 {
LL | | V1, V2, V3, V4, V5,
LL | | }
| |_- `NonEmptyEnum5` defined here
...
LL | match_empty!(NonEmptyEnum5::V1);
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyEnum5`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:105:18
2019-12-03 15:57:04 +00:00
|
LL | match_false!(0u8);
| ^^^ pattern `_` not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `u8`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyStruct(_)` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:107:18
2019-12-03 15:57:04 +00:00
|
LL | struct NonEmptyStruct(bool);
| ---------------------------- `NonEmptyStruct` defined here
...
LL | match_false!(NonEmptyStruct(true));
| ^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct(_)` not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyStruct`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:109:18
2019-12-03 15:57:04 +00:00
|
LL | / union NonEmptyUnion1 {
LL | | foo: (),
LL | | }
| |_- `NonEmptyUnion1` defined here
...
LL | match_false!((NonEmptyUnion1 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyUnion1`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:111:18
2019-12-03 15:57:04 +00:00
|
LL | / union NonEmptyUnion2 {
LL | | foo: (),
LL | | bar: (),
LL | | }
| |_- `NonEmptyUnion2` defined here
...
LL | match_false!((NonEmptyUnion2 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyUnion2`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `Foo(_)` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:113:18
2019-12-03 15:57:04 +00:00
|
LL | / enum NonEmptyEnum1 {
LL | | Foo(bool),
| | --- not covered
LL | |
LL | |
2019-12-03 15:57:04 +00:00
LL | | }
| |_- `NonEmptyEnum1` defined here
...
LL | match_false!(NonEmptyEnum1::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `Foo(_)` not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyEnum1`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `Foo(_)` and `Bar` not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:115:18
2019-12-03 15:57:04 +00:00
|
LL | / enum NonEmptyEnum2 {
LL | | Foo(bool),
| | --- not covered
LL | |
LL | |
2019-12-03 15:57:04 +00:00
LL | | Bar,
| | --- not covered
LL | |
LL | |
2019-12-03 15:57:04 +00:00
LL | | }
| |_- `NonEmptyEnum2` defined here
...
LL | match_false!(NonEmptyEnum2::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `Foo(_)` and `Bar` not covered
2019-12-03 15:57:04 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyEnum2`
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `V1`, `V2`, `V3` and 2 more not covered
2020-12-02 20:24:20 +00:00
--> $DIR/empty-match.rs:117:18
2019-11-30 15:51:26 +00:00
|
LL | / enum NonEmptyEnum5 {
LL | | V1, V2, V3, V4, V5,
LL | | }
| |_- `NonEmptyEnum5` defined here
...
2019-12-03 15:57:04 +00:00
LL | match_false!(NonEmptyEnum5::V1);
| ^^^^^^^^^^^^^^^^^ patterns `V1`, `V2`, `V3` and 2 more not covered
2019-11-30 15:51:26 +00:00
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
= note: the matched value is of type `NonEmptyEnum5`
2019-11-30 15:51:26 +00:00
2020-11-16 21:13:00 +00:00
error: aborting due to 20 previous errors
2019-11-30 15:51:26 +00:00
For more information about this error, try `rustc --explain E0004`.