rust-clippy/tests/ui/out_of_bounds_indexing/issue-3102.stderr

18 lines
414 B
Text
Raw Normal View History

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