2019-11-16 16:18:46 +00:00
error[E0004]: non-exhaustive patterns: `&[false, _]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:8:11
2019-11-16 16:18:46 +00:00
|
LL | match s2 {
| ^^ pattern `&[false, _]` not covered
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool; 2]`
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [true, .., true] => {},
2021-12-16 02:14:17 +00:00
LL + &[false, _] => todo!()
|
2019-11-16 16:18:46 +00:00
2019-11-17 17:48:45 +00:00
error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:12:11
2019-11-16 16:18:46 +00:00
|
LL | match s3 {
2019-11-17 17:48:45 +00:00
| ^^ pattern `&[false, ..]` not covered
2019-11-16 16:18:46 +00:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool; 3]`
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [true, .., true] => {},
2021-12-16 02:14:17 +00:00
LL + &[false, ..] => todo!()
|
2019-11-16 16:18:46 +00:00
2019-11-17 17:48:45 +00:00
error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:16:11
2019-11-16 16:18:46 +00:00
|
LL | match s10 {
2019-11-17 17:48:45 +00:00
| ^^^ pattern `&[false, ..]` not covered
2019-11-16 16:18:46 +00:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool; 10]`
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [true, .., true] => {},
2021-12-16 02:14:17 +00:00
LL + &[false, ..] => todo!()
|
2019-11-16 16:18:46 +00:00
2019-09-23 20:41:38 +02:00
error[E0004]: non-exhaustive patterns: `&[false, true]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:25:11
2019-09-23 20:41:38 +02:00
|
LL | match s2 {
| ^^ pattern `&[false, true]` not covered
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool; 2]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [.., false] => {},
2021-12-16 02:28:09 +00:00
LL + &[false, true] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-16 16:05:32 +00:00
error[E0004]: non-exhaustive patterns: `&[false, .., true]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:30:11
2019-09-23 20:41:38 +02:00
|
LL | match s3 {
2019-11-16 16:05:32 +00:00
| ^^ pattern `&[false, .., true]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool; 3]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [.., false] => {},
2021-12-16 02:28:09 +00:00
LL + &[false, .., true] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-05 16:30:04 +00:00
error[E0004]: non-exhaustive patterns: `&[false, .., true]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:35:11
2019-09-23 20:41:38 +02:00
|
LL | match s {
2019-11-05 16:30:04 +00:00
| ^ pattern `&[false, .., true]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [.., false] => {},
2021-12-16 02:28:09 +00:00
LL + &[false, .., true] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-03 23:11:04 +00:00
error[E0004]: non-exhaustive patterns: `&[_, ..]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:42:11
2019-09-23 20:41:38 +02:00
|
LL | match s {
2019-11-03 23:11:04 +00:00
| ^ pattern `&[_, ..]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [] => {},
2021-12-16 02:14:17 +00:00
LL + &[_, ..] => todo!()
|
2019-09-23 20:41:38 +02:00
2023-10-15 17:36:36 +02:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, ..]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:46:11
2019-09-23 20:41:38 +02:00
|
2023-11-04 04:25:35 +01:00
LL | match s {
2023-10-15 17:36:36 +02:00
| ^ patterns `&[]` and `&[_, ..]` not covered
2023-11-04 04:25:35 +01:00
|
= note: the matched value is of type `&[bool]`
= note: match arms with guards don't count towards exhaustivity
2023-10-15 17:36:36 +02: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
2023-11-04 04:25:35 +01:00
|
LL ~ [..] if false => {},
2023-10-15 17:36:36 +02:00
LL + &[] | &[_, ..] => todo!()
2023-11-04 04:25:35 +01:00
|
error[E0004]: non-exhaustive patterns: `&[_, _, ..]` not covered
--> $DIR/slice-patterns-exhaustiveness.rs:50:11
|
2019-09-23 20:41:38 +02:00
LL | match s {
2019-11-03 23:11:04 +00:00
| ^ pattern `&[_, _, ..]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [_] => {},
2021-12-16 02:28:09 +00:00
LL + &[_, _, ..] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-05 16:30:04 +00:00
error[E0004]: non-exhaustive patterns: `&[false, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:55:11
2019-09-23 20:41:38 +02:00
|
LL | match s {
2019-11-05 16:30:04 +00:00
| ^ pattern `&[false, ..]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [true, ..] => {},
2021-12-16 02:28:09 +00:00
LL + &[false, ..] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-05 16:30:04 +00:00
error[E0004]: non-exhaustive patterns: `&[false, _, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:60:11
2019-09-23 20:41:38 +02:00
|
LL | match s {
2019-11-05 16:30:04 +00:00
| ^ pattern `&[false, _, ..]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [true, ..] => {},
2021-12-16 02:28:09 +00:00
LL + &[false, _, ..] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-05 16:30:04 +00:00
error[E0004]: non-exhaustive patterns: `&[_, .., false]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:66:11
2019-09-23 20:41:38 +02:00
|
LL | match s {
2019-11-05 16:30:04 +00:00
| ^ pattern `&[_, .., false]` not covered
2019-09-23 20:41:38 +02:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [.., true] => {},
2021-12-16 02:28:09 +00:00
LL + &[_, .., false] => todo!()
|
2019-09-23 20:41:38 +02:00
2019-11-05 16:30:04 +00:00
error[E0004]: non-exhaustive patterns: `&[_, _, .., true]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:73:11
2019-10-05 22:57:52 +01:00
|
LL | match s {
2019-11-05 16:30:04 +00:00
| ^ pattern `&[_, _, .., true]` not covered
2019-10-05 22:57:52 +01:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [.., false] => {},
2021-12-16 02:28:09 +00:00
LL + &[_, _, .., true] => todo!()
|
2019-10-05 22:57:52 +01:00
2019-11-05 16:30:04 +00:00
error[E0004]: non-exhaustive patterns: `&[true, _, .., _]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:80:11
2019-10-05 22:57:52 +01:00
|
LL | match s {
2019-11-05 16:30:04 +00:00
| ^ pattern `&[true, _, .., _]` not covered
2019-10-05 22:57:52 +01:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ [false, .., false] => {},
2021-12-16 02:28:09 +00:00
LL + &[true, _, .., _] => todo!()
|
2019-10-05 22:57:52 +01:00
2020-07-01 15:10:51 +02:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:89:11
2019-11-17 22:25:51 +00:00
|
LL | match s {
2020-07-01 15:10:51 +02:00
| ^ patterns `&[]` and `&[_, _, ..]` not covered
2019-11-17 22:25:51 +00:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ &[true] => {},
2021-12-16 02:14:17 +00:00
LL + &[] | &[_, _, ..] => todo!()
|
2019-11-17 22:25:51 +00:00
2020-07-01 15:10:51 +02:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:93:11
2019-11-17 22:25:51 +00:00
|
LL | match s {
2020-07-01 15:10:51 +02:00
| ^ patterns `&[]` and `&[_, _, ..]` not covered
2024-11-07 19:34:23 +00:00
LL |
LL | CONST => {}
| ----- this pattern doesn't introduce a new catch-all binding, but rather pattern matches against the value of constant `CONST`
2020-07-01 15:10:51 +02:00
|
= note: the matched value is of type `&[bool]`
2024-11-07 19:34:23 +00:00
note: constant `CONST` defined here
--> $DIR/slice-patterns-exhaustiveness.rs:88:5
|
LL | const CONST: &[bool] = &[true];
| ^^^^^^^^^^^^^^^^^^^^
help: if you meant to introduce a binding, use a different name
|
LL | CONST_var => {}
| ++++
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ CONST => {},
2021-12-16 02:14:17 +00:00
LL + &[] | &[_, _, ..] => todo!()
|
2020-07-01 15:10:51 +02:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:97:11
2020-07-01 15:10:51 +02:00
|
LL | match s {
| ^ patterns `&[]` and `&[_, _, ..]` not covered
2024-11-07 19:34:23 +00:00
LL |
LL | CONST => {}
| ----- this pattern doesn't introduce a new catch-all binding, but rather pattern matches against the value of constant `CONST`
2020-07-01 15:10:51 +02:00
|
= note: the matched value is of type `&[bool]`
2024-11-07 19:34:23 +00:00
note: constant `CONST` defined here
--> $DIR/slice-patterns-exhaustiveness.rs:88:5
|
LL | const CONST: &[bool] = &[true];
| ^^^^^^^^^^^^^^^^^^^^
help: if you meant to introduce a binding, use a different name
|
LL | CONST_var => {}
| ++++
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ &[false] => {},
2021-12-16 02:28:09 +00:00
LL + &[] | &[_, _, ..] => todo!()
|
2020-07-01 15:10:51 +02:00
error[E0004]: non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:102:11
2020-07-01 15:10:51 +02:00
|
LL | match s {
| ^ patterns `&[]` and `&[_, _, ..]` not covered
2024-11-07 19:34:23 +00:00
...
LL | CONST => {}
| ----- this pattern doesn't introduce a new catch-all binding, but rather pattern matches against the value of constant `CONST`
2020-07-01 15:10:51 +02:00
|
= note: the matched value is of type `&[bool]`
2024-11-07 19:34:23 +00:00
note: constant `CONST` defined here
--> $DIR/slice-patterns-exhaustiveness.rs:88:5
|
LL | const CONST: &[bool] = &[true];
| ^^^^^^^^^^^^^^^^^^^^
help: if you meant to introduce a binding, use a different name
|
LL | CONST_var => {}
| ++++
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ CONST => {},
2021-12-16 02:28:09 +00:00
LL + &[] | &[_, _, ..] => todo!()
|
2020-07-01 15:10:51 +02:00
error[E0004]: non-exhaustive patterns: `&[_, _, ..]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:107:11
2020-07-01 15:10:51 +02:00
|
LL | match s {
| ^ pattern `&[_, _, ..]` not covered
2024-11-07 19:34:23 +00:00
...
LL | CONST => {}
| ----- this pattern doesn't introduce a new catch-all binding, but rather pattern matches against the value of constant `CONST`
2020-07-01 15:10:51 +02:00
|
= note: the matched value is of type `&[bool]`
2024-11-07 19:34:23 +00:00
note: constant `CONST` defined here
--> $DIR/slice-patterns-exhaustiveness.rs:88:5
|
LL | const CONST: &[bool] = &[true];
| ^^^^^^^^^^^^^^^^^^^^
help: if you meant to introduce a binding, use a different name
|
LL | CONST_var => {}
| ++++
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ CONST => {},
2021-12-16 02:28:09 +00:00
LL + &[_, _, ..] => todo!()
|
2020-07-01 15:10:51 +02:00
error[E0004]: non-exhaustive patterns: `&[false]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:112:11
2020-07-01 15:10:51 +02:00
|
LL | match s {
| ^ pattern `&[false]` not covered
2024-11-07 19:34:23 +00:00
...
LL | CONST => {}
| ----- this pattern doesn't introduce a new catch-all binding, but rather pattern matches against the value of constant `CONST`
2019-11-17 22:25:51 +00:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool]`
2024-11-07 19:34:23 +00:00
note: constant `CONST` defined here
--> $DIR/slice-patterns-exhaustiveness.rs:88:5
|
LL | const CONST: &[bool] = &[true];
| ^^^^^^^^^^^^^^^^^^^^
help: if you meant to introduce a binding, use a different name
|
LL | CONST_var => {}
| ++++
2021-12-16 22:46:13 +00: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-16 02:28:09 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ &[_, _, ..] => {},
2021-12-16 02:28:09 +00:00
LL + &[false] => todo!()
|
2019-11-17 22:25:51 +00:00
2019-11-17 22:43:06 +00:00
error[E0004]: non-exhaustive patterns: `&[false]` not covered
2023-11-04 04:25:35 +01:00
--> $DIR/slice-patterns-exhaustiveness.rs:125:11
2019-11-17 22:25:51 +00:00
|
LL | match s1 {
2019-11-17 22:43:06 +00:00
| ^^ pattern `&[false]` not covered
2024-11-07 19:34:23 +00:00
LL |
LL | CONST1 => {}
| ------ this pattern doesn't introduce a new catch-all binding, but rather pattern matches against the value of constant `CONST1`
2019-11-17 22:25:51 +00:00
|
2020-03-27 06:44:30 +01:00
= note: the matched value is of type `&[bool; 1]`
2024-11-07 19:34:23 +00:00
note: constant `CONST1` defined here
--> $DIR/slice-patterns-exhaustiveness.rs:124:5
|
LL | const CONST1: &[bool; 1] = &[true];
| ^^^^^^^^^^^^^^^^^^^^^^^^
help: if you meant to introduce a binding, use a different name
|
LL | CONST1_var => {}
| ++++
2021-12-16 22:46:13 +00: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-16 02:14:17 +00:00
|
2023-02-27 17:43:39 +00:00
LL ~ CONST1 => {},
2021-12-16 02:14:17 +00:00
LL + &[false] => todo!()
|
2019-11-17 22:25:51 +00:00
2023-11-04 04:25:35 +01:00
error: aborting due to 21 previous errors
2019-09-23 20:41:38 +02:00
For more information about this error, try `rustc --explain E0004`.