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