rust/tests/ui/pattern/usefulness/match-vec-unreachable.stderr

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

27 lines
622 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unreachable pattern
2019-12-29 18:23:42 -06:00
--> $DIR/match-vec-unreachable.rs:8:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | [(1, 2), (2, 3), b] => (),
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2019-12-29 18:23:42 -06:00
--> $DIR/match-vec-unreachable.rs:1:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unreachable_patterns)]
| ^^^^^^^^^^^^^^^^^^^^
error: unreachable pattern
2019-12-29 18:23:42 -06:00
--> $DIR/match-vec-unreachable.rs:18:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | [_, _, _, _, _] => { }
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^
error: unreachable pattern
2019-12-29 18:23:42 -06:00
--> $DIR/match-vec-unreachable.rs:26:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ['a', 'b', 'c'] => {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^
error: aborting due to 3 previous errors