rust/tests/ui/match_on_vec_items.stderr

53 lines
1.4 KiB
Text
Raw Normal View History

error: indexing into a vector may panic
--> $DIR/match_on_vec_items.rs:9:11
2020-04-23 23:28:18 +02:00
|
LL | match arr[idx] {
| ^^^^^^^^ help: try this: `arr.get(idx)`
2020-04-23 23:28:18 +02:00
|
2020-04-25 10:33:40 +02:00
= note: `-D clippy::match-on-vec-items` implied by `-D warnings`
2020-04-23 23:28:18 +02:00
error: indexing into a vector may panic
--> $DIR/match_on_vec_items.rs:16:11
2020-04-23 23:28:18 +02:00
|
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
2020-04-23 23:28:18 +02:00
|
LL | match arr[range] {
| ^^^^^^^^^^ help: try this: `arr.get(range)`
2020-04-23 23:28:18 +02:00
error: aborting due to 8 previous errors
2020-04-23 23:28:18 +02:00