summary refs log tree commit diff
path: root/src/test/ui/match/match-vec-fixed.stderr
blob: 1b85034ef6bc3088746b2844a5574e257c6b5c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unreachable pattern
  --> $DIR/match-vec-fixed.rs:17:9
   |
LL |         [_, _, _] => {} //~ ERROR unreachable pattern
   |         ^^^^^^^^^
   |
note: lint level defined here
  --> $DIR/match-vec-fixed.rs:11:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: unreachable pattern
  --> $DIR/match-vec-fixed.rs:21:9
   |
LL |         [_, 1, _] => {} //~ ERROR unreachable pattern
   |         ^^^^^^^^^

error: aborting due to 2 previous errors