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
|
|
|
|
|
|
|
|
LL | &x[num..10]; // should trigger out of bounds error
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: range is out of bounds
|
2019-07-16 15:26:47 -05:00
|
|
|
--> $DIR/issue-3102.rs:10:8
|
2019-07-16 00:30:23 -05:00
|
|
|
|
|
|
|
|
LL | &x[10..num]; // should trigger out of bounds error
|
|
|
|
| ^^
|
|
|
|
|
2019-07-16 15:26:47 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2019-07-16 00:30:23 -05:00
|
|
|
|