2019-07-16 05:30:23 +00:00
|
|
|
error: range is out of bounds
|
2019-07-16 20:26:47 +00:00
|
|
|
--> $DIR/issue-3102.rs:9:13
|
2019-07-16 05:30:23 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | &x[num..10];
|
2019-07-16 05:30:23 +00:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::out_of_bounds_indexing)]`
|
2019-07-16 05:30:23 +00:00
|
|
|
|
|
|
|
error: range is out of bounds
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/issue-3102.rs:12:8
|
2019-07-16 05:30:23 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | &x[10..num];
|
2019-07-16 05:30:23 +00:00
|
|
|
| ^^
|
|
|
|
|
2019-07-16 20:26:47 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2019-07-16 05:30:23 +00:00
|
|
|
|