rust/tests/ui/match_on_vec_items.stderr

53 lines
1.5 KiB
Text
Raw Normal View History

error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:18: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 vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:25:11
2020-04-23 23:28:18 +02:00
|
LL | match arr[range] {
| ^^^^^^^^^^ help: try this: `arr.get(range)`
error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:38:11
|
LL | match arr[idx] {
| ^^^^^^^^ help: try this: `arr.get(idx)`
error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:45:11
|
LL | match arr[range] {
| ^^^^^^^^^^ help: try this: `arr.get(range)`
error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:58:11
|
LL | match arr[idx] {
| ^^^^^^^^ help: try this: `arr.get(idx)`
error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:65:11
|
LL | match arr[range] {
| ^^^^^^^^^^ help: try this: `arr.get(range)`
error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:78:11
|
LL | match arr[idx] {
| ^^^^^^^^ help: try this: `arr.get(idx)`
error: indexing vector may panic. Consider using `get`
2020-04-25 10:33:40 +02:00
--> $DIR/match_on_vec_items.rs:85: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