mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
52 lines
1.4 KiB
Text
52 lines
1.4 KiB
Text
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:10: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:17:11
|
|
|
|
|
LL | match arr[range] {
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:30:11
|
|
|
|
|
LL | match arr[idx] {
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
|
|
|
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:37:11
|
|
|
|
|
LL | match arr[range] {
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:50:11
|
|
|
|
|
LL | match arr[idx] {
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
|
|
|
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:57:11
|
|
|
|
|
LL | match arr[range] {
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:70:11
|
|
|
|
|
LL | match arr[idx] {
|
|
| ^^^^^^^^ help: try this: `arr.get(idx)`
|
|
|
|
error: indexing into a vector may panic
|
|
--> $DIR/match_on_vec_items.rs:77:11
|
|
|
|
|
LL | match arr[range] {
|
|
| ^^^^^^^^^^ help: try this: `arr.get(range)`
|
|
|
|
error: aborting due to 8 previous errors
|
|
|