summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_on_vec_items.stderr
blob: 49446d715abe26682174f6f707475954cba14e1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:9:11
   |
LL |     match arr[idx] {
   |           ^^^^^^^^ help: try this: `arr.get(idx)`
   |
   = note: `-D clippy::match-on-vec-items` implied by `-D warnings`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:16:11
   |
LL |     match arr[range] {
   |           ^^^^^^^^^^ help: try this: `arr.get(range)`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:29:11
   |
LL |     match arr[idx] {
   |           ^^^^^^^^ help: try this: `arr.get(idx)`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:36:11
   |
LL |     match arr[range] {
   |           ^^^^^^^^^^ help: try this: `arr.get(range)`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:49:11
   |
LL |     match arr[idx] {
   |           ^^^^^^^^ help: try this: `arr.get(idx)`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:56:11
   |
LL |     match arr[range] {
   |           ^^^^^^^^^^ help: try this: `arr.get(range)`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:69:11
   |
LL |     match arr[idx] {
   |           ^^^^^^^^ help: try this: `arr.get(idx)`

error: indexing into a vector may panic
  --> $DIR/match_on_vec_items.rs:76:11
   |
LL |     match arr[range] {
   |           ^^^^^^^^^^ help: try this: `arr.get(range)`

error: aborting due to 8 previous errors