2019-07-16 00:30:23 -05:00
|
|
|
error: range is out of bounds
|
2019-07-16 15:26:47 -05:00
|
|
|
--> $DIR/issue-3102.rs:9:13
|
2019-07-16 00:30:23 -05:00
|
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
LL | &x[num..10];
|
2019-07-16 00:30:23 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: range is out of bounds
|
2023-07-28 14:35:48 -05:00
|
|
|
--> $DIR/issue-3102.rs:12:8
|
2019-07-16 00:30:23 -05:00
|
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
LL | &x[10..num];
|
2019-07-16 00:30:23 -05:00
|
|
|
| ^^
|
|
|
|
|
2019-07-16 15:26:47 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2019-07-16 00:30:23 -05:00
|
|
|
|