mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
51 lines
1.1 KiB
Text
51 lines
1.1 KiB
Text
error: indexing may panic
|
|
--> $DIR/indexing_slicing_index.rs:10:5
|
|
|
|
|
LL | x[index];
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D clippy::indexing-slicing` implied by `-D warnings`
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
error: indexing may panic
|
|
--> $DIR/indexing_slicing_index.rs:22:5
|
|
|
|
|
LL | v[0];
|
|
| ^^^^
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
error: indexing may panic
|
|
--> $DIR/indexing_slicing_index.rs:23:5
|
|
|
|
|
LL | v[10];
|
|
| ^^^^^
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
error: indexing may panic
|
|
--> $DIR/indexing_slicing_index.rs:24:5
|
|
|
|
|
LL | v[1 << 3];
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
error: indexing may panic
|
|
--> $DIR/indexing_slicing_index.rs:30:5
|
|
|
|
|
LL | v[N];
|
|
| ^^^^
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
error: indexing may panic
|
|
--> $DIR/indexing_slicing_index.rs:31:5
|
|
|
|
|
LL | v[M];
|
|
| ^^^^
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
error: aborting due to 6 previous errors
|
|
|