2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:12:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[index..];
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n..)` or .get_mut(n..)` instead
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::indexing-slicing` implied by `-D warnings`
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:13:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[..index];
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:14:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[index_from..index_to];
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n..m)` or `.get_mut(n..m)` instead
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:15:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[index_from..][..index_to]; // Two lint reports, one for [index_from..] and another for [..index_to].
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:15:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[index_from..][..index_to]; // Two lint reports, one for [index_from..] and another for [..index_to].
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n..)` or .get_mut(n..)` instead
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:16:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2019-07-16 05:30:23 +00:00
|
|
|
LL | &x[5..][..10]; // Two lint reports, one for out of bounds [5..] and another for slicing [..10].
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
|
|
error: range is out of bounds
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:16:8
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2019-07-16 05:30:23 +00:00
|
|
|
LL | &x[5..][..10]; // Two lint reports, one for out of bounds [5..] and another for slicing [..10].
|
2018-10-15 11:44:39 +00:00
|
|
|
| ^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2019-07-16 05:30:23 +00:00
|
|
|
= note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
|
2018-06-14 20:04:37 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:17:6
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[0..][..3];
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2018-06-14 20:04:37 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:18:6
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[1..][..5];
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2018-06-14 20:04:37 +00:00
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: range is out of bounds
|
|
|
|
--> $DIR/indexing_slicing_slice.rs:25:12
|
2017-05-17 12:19:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &y[0..=4];
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^
|
2018-06-14 20:04:37 +00:00
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: range is out of bounds
|
|
|
|
--> $DIR/indexing_slicing_slice.rs:26:11
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &y[..=4];
|
2020-09-24 12:49:22 +00:00
|
|
|
| ^
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:31:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &v[10..100];
|
2017-05-17 12:19:44 +00:00
|
|
|
| ^^^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n..m)` or `.get_mut(n..m)` instead
|
2017-05-17 12:19:44 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:32:6
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[10..][..100]; // Two lint reports, one for [10..] and another for [..100].
|
2018-06-14 20:04:37 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
|
|
error: range is out of bounds
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:32:8
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &x[10..][..100]; // Two lint reports, one for [10..] and another for [..100].
|
2018-10-15 11:44:39 +00:00
|
|
|
| ^^
|
2018-06-14 20:04:37 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:33:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &v[10..];
|
2018-05-23 04:56:02 +00:00
|
|
|
| ^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n..)` or .get_mut(n..)` instead
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: slicing may panic
|
2020-02-03 06:09:17 +00:00
|
|
|
--> $DIR/indexing_slicing_slice.rs:34:6
|
2018-05-23 04:56:02 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &v[..100];
|
2018-05-23 04:56:02 +00:00
|
|
|
| ^^^^^^^^
|
2018-06-13 23:28:57 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(..n)`or `.get_mut(..n)` instead
|
2018-05-23 04:56:02 +00:00
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: aborting due to 16 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|