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