2018-08-08 14:28:26 +02:00
|
|
|
error: unreachable pattern
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/match-vec-unreachable.rs:8:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2024-07-21 14:46:05 +02:00
|
|
|
LL | [a, (2, 3), _] => (),
|
2024-08-19 20:51:21 +02:00
|
|
|
| -------------- matches all the relevant values
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | [(1, 2), (2, 3), b] => (),
|
2024-08-19 20:51:21 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ no value can reach this
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/match-vec-unreachable.rs:1:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/match-vec-unreachable.rs:18:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2024-07-21 14:46:05 +02:00
|
|
|
LL | [ref a, _, _, ..] => { println!("{}", a); }
|
2024-08-19 20:51:21 +02:00
|
|
|
| ----------------- matches all the relevant values
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | [_, _, _, _, _] => { }
|
2024-08-19 20:51:21 +02:00
|
|
|
| ^^^^^^^^^^^^^^^ no value can reach this
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error: unreachable pattern
|
2019-12-30 01:23:42 +01:00
|
|
|
--> $DIR/match-vec-unreachable.rs:26:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2024-07-21 14:46:05 +02:00
|
|
|
LL | ['a', 'b', 'c', ref _tail @ ..] => {}
|
2024-08-19 20:51:21 +02:00
|
|
|
| ------------------------------- matches all the relevant values
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | ['a', 'b', 'c'] => {}
|
2024-08-19 20:51:21 +02:00
|
|
|
| ^^^^^^^^^^^^^^^ no value can reach this
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|