2019-11-16 10:18:46 -06:00
error[E0004]: non-exhaustive patterns: `&[false, _]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:8:11
2019-11-16 10:18:46 -06:00
|
LL | match s2 {
| ^^ pattern `&[false, _]` not covered
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool; 2]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [true, .., true] => {},
2021-12-15 20:14:17 -06:00
LL + &[false, _] => todo!()
|
2019-11-16 10:18:46 -06:00
2019-11-17 11:48:45 -06:00
error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:12:11
2019-11-16 10:18:46 -06:00
|
LL | match s3 {
2019-11-17 11:48:45 -06:00
| ^^ pattern `&[false, ..]` not covered
2019-11-16 10:18:46 -06:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool; 3]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [true, .., true] => {},
2021-12-15 20:14:17 -06:00
LL + &[false, ..] => todo!()
|
2019-11-16 10:18:46 -06:00
2019-11-17 11:48:45 -06:00
error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:16:11
2019-11-16 10:18:46 -06:00
|
LL | match s10 {
2019-11-17 11:48:45 -06:00
| ^^^ pattern `&[false, ..]` not covered
2019-11-16 10:18:46 -06:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool; 10]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [true, .., true] => {},
2021-12-15 20:14:17 -06:00
LL + &[false, ..] => todo!()
|
2019-11-16 10:18:46 -06:00
2019-09-23 13:41:38 -05:00
error[E0004]: non-exhaustive patterns: `&[false, true]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:25:11
2019-09-23 13:41:38 -05:00
|
LL | match s2 {
| ^^ pattern `&[false, true]` not covered
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool; 2]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [.., false] => {},
2021-12-15 20:28:09 -06:00
LL + &[false, true] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-16 10:05:32 -06:00
error[E0004]: non-exhaustive patterns: `&[false, .., true]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:30:11
2019-09-23 13:41:38 -05:00
|
LL | match s3 {
2019-11-16 10:05:32 -06:00
| ^^ pattern `&[false, .., true]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool; 3]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [.., false] => {},
2021-12-15 20:28:09 -06:00
LL + &[false, .., true] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-05 10:30:04 -06:00
error[E0004]: non-exhaustive patterns: `&[false, .., true]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:35:11
2019-09-23 13:41:38 -05:00
|
LL | match s {
2019-11-05 10:30:04 -06:00
| ^ pattern `&[false, .., true]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [.., false] => {},
2021-12-15 20:28:09 -06:00
LL + &[false, .., true] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-03 17:11:04 -06:00
error[E0004]: non-exhaustive patterns: `&[_, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:42:11
2019-09-23 13:41:38 -05:00
|
LL | match s {
2019-11-03 17:11:04 -06:00
| ^ pattern `&[_, ..]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [] => {},
2021-12-15 20:14:17 -06:00
LL + &[_, ..] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-03 17:11:04 -06:00
error[E0004]: non-exhaustive patterns: `&[_, _, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:46:11
2019-09-23 13:41:38 -05:00
|
LL | match s {
2019-11-03 17:11:04 -06:00
| ^ pattern `&[_, _, ..]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [_] => {},
2021-12-15 20:28:09 -06:00
LL + &[_, _, ..] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-05 10:30:04 -06:00
error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:51:11
2019-09-23 13:41:38 -05:00
|
LL | match s {
2019-11-05 10:30:04 -06:00
| ^ pattern `&[false, ..]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [true, ..] => {},
2021-12-15 20:28:09 -06:00
LL + &[false, ..] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-05 10:30:04 -06:00
error[E0004]: non-exhaustive patterns: `&[false, _, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:56:11
2019-09-23 13:41:38 -05:00
|
LL | match s {
2019-11-05 10:30:04 -06:00
| ^ pattern `&[false, _, ..]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [true, ..] => {},
2021-12-15 20:28:09 -06:00
LL + &[false, _, ..] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-05 10:30:04 -06:00
error[E0004]: non-exhaustive patterns: `&[_, .., false]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:62:11
2019-09-23 13:41:38 -05:00
|
LL | match s {
2019-11-05 10:30:04 -06:00
| ^ pattern `&[_, .., false]` not covered
2019-09-23 13:41:38 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [.., true] => {},
2021-12-15 20:28:09 -06:00
LL + &[_, .., false] => todo!()
|
2019-09-23 13:41:38 -05:00
2019-11-05 10:30:04 -06:00
error[E0004]: non-exhaustive patterns: `&[_, _, .., true]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:69:11
2019-10-05 16:57:52 -05:00
|
LL | match s {
2019-11-05 10:30:04 -06:00
| ^ pattern `&[_, _, .., true]` not covered
2019-10-05 16:57:52 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [.., false] => {},
2021-12-15 20:28:09 -06:00
LL + &[_, _, .., true] => todo!()
|
2019-10-05 16:57:52 -05:00
2019-11-05 10:30:04 -06:00
error[E0004]: non-exhaustive patterns: `&[true, _, .., _]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:76:11
2019-10-05 16:57:52 -05:00
|
LL | match s {
2019-11-05 10:30:04 -06:00
| ^ pattern `&[true, _, .., _]` not covered
2019-10-05 16:57:52 -05:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ [false, .., false] => {},
2021-12-15 20:28:09 -06:00
LL + &[true, _, .., _] => todo!()
|
2019-10-05 16:57:52 -05:00
2020-07-01 08:10:51 -05:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:85:11
2019-11-17 16:25:51 -06:00
|
LL | match s {
2020-07-01 08:10:51 -05:00
| ^ patterns `&[]` and `&[_, _, ..]` not covered
2019-11-17 16:25:51 -06:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ &[true] => {},
2021-12-15 20:14:17 -06:00
LL + &[] | &[_, _, ..] => todo!()
|
2019-11-17 16:25:51 -06:00
2020-07-01 08:10:51 -05:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
2019-12-29 18:23:42 -06:00
--> $DIR/slice-patterns-exhaustiveness.rs:89:11
2019-11-17 16:25:51 -06:00
|
LL | match s {
2020-07-01 08:10:51 -05:00
| ^ patterns `&[]` and `&[_, _, ..]` not covered
|
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ CONST => {},
2021-12-15 20:14:17 -06:00
LL + &[] | &[_, _, ..] => todo!()
|
2020-07-01 08:10:51 -05:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
--> $DIR/slice-patterns-exhaustiveness.rs:93:11
|
LL | match s {
| ^ patterns `&[]` and `&[_, _, ..]` not covered
|
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ &[false] => {},
2021-12-15 20:28:09 -06:00
LL + &[] | &[_, _, ..] => todo!()
|
2020-07-01 08:10:51 -05:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
--> $DIR/slice-patterns-exhaustiveness.rs:98:11
|
LL | match s {
| ^ patterns `&[]` and `&[_, _, ..]` not covered
|
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ CONST => {},
2021-12-15 20:28:09 -06:00
LL + &[] | &[_, _, ..] => todo!()
|
2020-07-01 08:10:51 -05:00
error[E0004]: non-exhaustive patterns: `&[_, _, ..]` not covered
--> $DIR/slice-patterns-exhaustiveness.rs:103:11
|
LL | match s {
| ^ pattern `&[_, _, ..]` not covered
|
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ CONST => {},
2021-12-15 20:28:09 -06:00
LL + &[_, _, ..] => todo!()
|
2020-07-01 08:10:51 -05:00
error[E0004]: non-exhaustive patterns: `&[false]` not covered
--> $DIR/slice-patterns-exhaustiveness.rs:108:11
|
LL | match s {
| ^ pattern `&[false]` not covered
2019-11-17 16:25:51 -06:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool]`
2021-12-16 16:46:13 -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
2021-12-15 20:28:09 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ &[_, _, ..] => {},
2021-12-15 20:28:09 -06:00
LL + &[false] => todo!()
|
2019-11-17 16:25:51 -06:00
2019-11-17 16:43:06 -06:00
error[E0004]: non-exhaustive patterns: `&[false]` not covered
2020-07-01 08:10:51 -05:00
--> $DIR/slice-patterns-exhaustiveness.rs:121:11
2019-11-17 16:25:51 -06:00
|
LL | match s1 {
2019-11-17 16:43:06 -06:00
| ^^ pattern `&[false]` not covered
2019-11-17 16:25:51 -06:00
|
2020-03-27 00:44:30 -05:00
= note: the matched value is of type `&[bool; 1]`
2021-12-16 16:46:13 -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
2021-12-15 20:14:17 -06:00
|
2023-02-27 11:43:39 -06:00
LL ~ CONST1 => {},
2021-12-15 20:14:17 -06:00
LL + &[false] => todo!()
|
2019-11-17 16:25:51 -06:00
2020-07-01 08:10:51 -05:00
error: aborting due to 20 previous errors
2019-09-23 13:41:38 -05:00
For more information about this error, try `rustc --explain E0004`.