rust/tests/ui/pattern/usefulness/empty-match.normal.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

349 lines
12 KiB
Plaintext
Raw Normal View History

2020-11-12 17:28:55 +00:00
error: unreachable pattern
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:68: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 23:11:29 +00:00
--> $DIR/empty-match.rs:8: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
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:71:9
2020-11-12 17:24:42 +00:00
|
2020-11-12 17:28:55 +00:00
LL | _ if false => {},
| ^
error: unreachable pattern
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:78:9
2020-11-12 17:24:42 +00:00
|
2020-11-12 17:28:55 +00:00
LL | _ => {},
| ^
error: unreachable pattern
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:81:9
2020-11-16 21:13:00 +00:00
|
LL | _ if false => {},
| ^
2023-05-25 16:42:12 +00:00
error[E0005]: refutable pattern in local binding
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:86:9
2023-05-25 16:42:12 +00:00
|
LL | let None = x;
| ^^^^ pattern `Some(_)` 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: the matched value is of type `Option<SecretlyUninhabitedForeignStruct>`
help: you might want to use `if let` to ignore the variant that isn't matched
|
LL | if let None = x { todo!() };
| ++ +++++++++++
2020-11-16 21:13:00 +00:00
error: unreachable pattern
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:98:9
2020-11-16 21:13:00 +00:00
|
LL | _ => {},
| ^
error: unreachable pattern
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:101: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
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:119:20
2019-11-30 15:51:26 +00:00
|
2020-12-02 23:11:29 +00:00
LL | match_no_arms!(0u8);
| ^^^
2019-11-30 15:51:26 +00:00
|
= note: the matched value is of type `u8`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
2019-11-30 15:51:26 +00:00
2020-12-02 23:11:29 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct1` is non-empty
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:121:20
2019-11-30 15:51:26 +00:00
|
2020-12-02 23:11:29 +00:00
LL | match_no_arms!(NonEmptyStruct1);
| ^^^^^^^^^^^^^^^
2019-11-30 15:51:26 +00:00
|
note: `NonEmptyStruct1` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:15:8
|
LL | struct NonEmptyStruct1;
| ^^^^^^^^^^^^^^^
2020-12-02 23:11:29 +00:00
= note: the matched value is of type `NonEmptyStruct1`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
2020-12-02 23:11:29 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyStruct2` is non-empty
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:123:20
2020-12-02 23:11:29 +00:00
|
LL | match_no_arms!(NonEmptyStruct2(true));
| ^^^^^^^^^^^^^^^^^^^^^
|
note: `NonEmptyStruct2` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:18:8
|
LL | struct NonEmptyStruct2(bool);
| ^^^^^^^^^^^^^^^
2020-12-02 23:11:29 +00:00
= note: the matched value is of type `NonEmptyStruct2`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion1` is non-empty
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:125:20
2019-12-03 14:07:14 +00:00
|
LL | match_no_arms!((NonEmptyUnion1 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-12-03 14:07:14 +00:00
|
note: `NonEmptyUnion1` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:21:7
|
LL | union NonEmptyUnion1 {
| ^^^^^^^^^^^^^^
= note: the matched value is of type `NonEmptyUnion1`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
2019-12-03 14:07:14 +00:00
error[E0004]: non-exhaustive patterns: type `NonEmptyUnion2` is non-empty
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:127:20
2019-12-03 14:07:14 +00:00
|
LL | match_no_arms!((NonEmptyUnion2 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: `NonEmptyUnion2` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:26:7
2019-12-03 14:07:14 +00:00
|
LL | union NonEmptyUnion2 {
| ^^^^^^^^^^^^^^
= note: the matched value is of type `NonEmptyUnion2`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern
2019-12-03 14:07:14 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:129:20
2019-11-30 15:51:26 +00:00
|
LL | match_no_arms!(NonEmptyEnum1::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
note: `NonEmptyEnum1` defined here
--> $DIR/empty-match.rs:32:6
2019-11-30 15:51:26 +00:00
|
LL | enum NonEmptyEnum1 {
| ^^^^^^^^^^^^^
...
LL | Foo(bool),
| --- not covered
= note: the matched value is of type `NonEmptyEnum1`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:132:20
2019-11-30 15:51:26 +00:00
|
LL | match_no_arms!(NonEmptyEnum2::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
2019-11-30 15:51:26 +00:00
|
note: `NonEmptyEnum2` defined here
--> $DIR/empty-match.rs:39:6
|
LL | enum NonEmptyEnum2 {
| ^^^^^^^^^^^^^
...
LL | Foo(bool),
| --- not covered
2023-05-25 18:17:02 +00:00
...
LL | Bar,
| --- not covered
= note: the matched value is of type `NonEmptyEnum2`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
2019-11-30 15:51:26 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:135:20
2019-12-03 15:57:04 +00:00
|
LL | match_no_arms!(NonEmptyEnum5::V1);
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
note: `NonEmptyEnum5` defined here
--> $DIR/empty-match.rs:49:6
2019-12-03 15:57:04 +00:00
|
LL | enum NonEmptyEnum5 {
| ^^^^^^^^^^^^^
...
2023-10-29 03:43:25 +00:00
LL | V1, V2, V3, V4, V5,
| -- -- -- -- -- not covered
2023-10-29 03:43:25 +00:00
| | | | |
| | | | not covered
| | | not covered
| | not covered
| not covered
= note: the matched value is of type `NonEmptyEnum5`
= help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or multiple match arms
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:139:24
2019-12-03 15:57:04 +00:00
|
2020-12-02 23:11:29 +00:00
LL | match_guarded_arm!(0u8);
| ^^^ pattern `_` not covered
2019-12-03 15:57:04 +00:00
|
= note: the matched value is of type `u8`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + _ => todo!()
|
2019-12-03 15:57:04 +00:00
2020-12-02 23:11:29 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyStruct1` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:144:24
2020-12-02 23:11:29 +00:00
|
LL | match_guarded_arm!(NonEmptyStruct1);
| ^^^^^^^^^^^^^^^ pattern `NonEmptyStruct1` not covered
|
note: `NonEmptyStruct1` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:15:8
|
LL | struct NonEmptyStruct1;
| ^^^^^^^^^^^^^^^
2020-12-02 23:11:29 +00:00
= note: the matched value is of type `NonEmptyStruct1`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + NonEmptyStruct1 => todo!()
|
2020-12-02 23:11:29 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyStruct2(_)` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:149:24
2019-12-03 15:57:04 +00:00
|
2020-12-02 23:11:29 +00:00
LL | match_guarded_arm!(NonEmptyStruct2(true));
| ^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyStruct2(_)` not covered
2019-12-03 15:57:04 +00:00
|
note: `NonEmptyStruct2` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:18:8
|
LL | struct NonEmptyStruct2(bool);
| ^^^^^^^^^^^^^^^
2020-12-02 23:11:29 +00:00
= note: the matched value is of type `NonEmptyStruct2`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + NonEmptyStruct2(_) => todo!()
|
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyUnion1 { .. }` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:154:24
2019-12-03 15:57:04 +00:00
|
LL | match_guarded_arm!((NonEmptyUnion1 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion1 { .. }` not covered
2019-12-03 15:57:04 +00:00
|
note: `NonEmptyUnion1` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:21:7
|
LL | union NonEmptyUnion1 {
| ^^^^^^^^^^^^^^
= note: the matched value is of type `NonEmptyUnion1`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + NonEmptyUnion1 { .. } => todo!()
|
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyUnion2 { .. }` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:159:24
2019-12-03 15:57:04 +00:00
|
LL | match_guarded_arm!((NonEmptyUnion2 { foo: () }));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyUnion2 { .. }` not covered
|
note: `NonEmptyUnion2` defined here
2023-05-25 18:17:02 +00:00
--> $DIR/empty-match.rs:26:7
2019-12-03 15:57:04 +00:00
|
LL | union NonEmptyUnion2 {
| ^^^^^^^^^^^^^^
= note: the matched value is of type `NonEmptyUnion2`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + NonEmptyUnion2 { .. } => todo!()
|
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyEnum1::Foo(_)` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:164:24
2019-12-03 15:57:04 +00:00
|
LL | match_guarded_arm!(NonEmptyEnum1::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ pattern `NonEmptyEnum1::Foo(_)` not covered
|
note: `NonEmptyEnum1` defined here
--> $DIR/empty-match.rs:32:6
2019-12-03 15:57:04 +00:00
|
LL | enum NonEmptyEnum1 {
| ^^^^^^^^^^^^^
...
LL | Foo(bool),
| --- not covered
= note: the matched value is of type `NonEmptyEnum1`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + NonEmptyEnum1::Foo(_) => todo!()
|
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:169:24
2019-12-03 15:57:04 +00:00
|
LL | match_guarded_arm!(NonEmptyEnum2::Foo(true));
| ^^^^^^^^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum2::Foo(_)` and `NonEmptyEnum2::Bar` not covered
2019-12-03 15:57:04 +00:00
|
note: `NonEmptyEnum2` defined here
--> $DIR/empty-match.rs:39:6
|
LL | enum NonEmptyEnum2 {
| ^^^^^^^^^^^^^
...
LL | Foo(bool),
| --- not covered
2023-05-25 18:17:02 +00:00
...
LL | Bar,
| --- not covered
= note: the matched value is of type `NonEmptyEnum2`
= note: match arms with guards don't count towards exhaustivity
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
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + NonEmptyEnum2::Foo(_) | NonEmptyEnum2::Bar => todo!()
|
2019-12-03 15:57:04 +00:00
error[E0004]: non-exhaustive patterns: `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
2023-10-29 03:43:25 +00:00
--> $DIR/empty-match.rs:174:24
2019-11-30 15:51:26 +00:00
|
LL | match_guarded_arm!(NonEmptyEnum5::V1);
| ^^^^^^^^^^^^^^^^^ patterns `NonEmptyEnum5::V1`, `NonEmptyEnum5::V2`, `NonEmptyEnum5::V3` and 2 more not covered
|
note: `NonEmptyEnum5` defined here
--> $DIR/empty-match.rs:49:6
2019-11-30 15:51:26 +00:00
|
LL | enum NonEmptyEnum5 {
| ^^^^^^^^^^^^^
...
2023-10-29 03:43:25 +00:00
LL | V1, V2, V3, V4, V5,
| -- -- -- -- -- not covered
2023-10-29 03:43:25 +00:00
| | | | |
| | | | not covered
| | | not covered
| | not covered
| not covered
= note: the matched value is of type `NonEmptyEnum5`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown, or multiple match arms
|
2023-02-27 17:43:39 +00:00
LL ~ _ if false => {},
LL + _ => todo!()
|
2019-11-30 15:51:26 +00:00
2023-05-25 16:42:12 +00:00
error: aborting due to 23 previous errors
2019-11-30 15:51:26 +00:00
2023-05-25 16:42:12 +00:00
Some errors have detailed explanations: E0004, E0005.
For more information about an error, try `rustc --explain E0004`.