2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:10:11
|
2020-04-23 16:28:18 -05:00
|
|
|
|
|
2020-04-24 16:52:02 -05:00
|
|
|
LL | match arr[idx] {
|
|
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
2020-04-23 16:28:18 -05:00
|
|
|
|
|
2020-04-25 03:33:40 -05:00
|
|
|
= note: `-D clippy::match-on-vec-items` implied by `-D warnings`
|
2020-04-23 16:28:18 -05:00
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:17:11
|
2020-04-23 16:28:18 -05:00
|
|
|
|
|
2020-04-24 16:52:02 -05:00
|
|
|
LL | match arr[range] {
|
|
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:30:11
|
2020-04-24 16:52:02 -05:00
|
|
|
|
|
|
|
|
LL | match arr[idx] {
|
|
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:37:11
|
2020-04-24 16:52:02 -05:00
|
|
|
|
|
|
|
|
LL | match arr[range] {
|
|
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:50:11
|
2020-04-24 16:52:02 -05:00
|
|
|
|
|
|
|
|
LL | match arr[idx] {
|
|
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:57:11
|
2020-04-24 16:52:02 -05:00
|
|
|
|
|
|
|
|
LL | match arr[range] {
|
|
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:70:11
|
2020-04-24 16:52:02 -05:00
|
|
|
|
|
|
|
|
LL | match arr[idx] {
|
|
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
|
|
|
|
2020-04-26 09:57:19 -05:00
|
|
|
error: indexing into a vector may panic
|
2023-06-06 15:56:57 -05:00
|
|
|
--> $DIR/match_on_vec_items.rs:77:11
|
2020-04-23 16:28:18 -05:00
|
|
|
|
|
2020-04-24 16:52:02 -05:00
|
|
|
LL | match arr[range] {
|
|
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
2020-04-23 16:28:18 -05:00
|
|
|
|
2020-04-24 16:52:02 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2020-04-23 16:28:18 -05:00
|
|
|
|