rust/tests/ui/out_of_bounds_indexing/empty_array.stderr
2019-10-01 16:37:22 -07:00

47 lines
895 B
Plaintext

error: range is out of bounds
--> $DIR/empty_array.rs:7:12
|
LL | &empty[1..5];
| ^
|
= note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
error: range is out of bounds
--> $DIR/empty_array.rs:8:16
|
LL | &empty[0..=4];
| ^
error: range is out of bounds
--> $DIR/empty_array.rs:9:15
|
LL | &empty[..=4];
| ^
error: range is out of bounds
--> $DIR/empty_array.rs:10:12
|
LL | &empty[1..];
| ^
error: range is out of bounds
--> $DIR/empty_array.rs:11:14
|
LL | &empty[..4];
| ^
error: range is out of bounds
--> $DIR/empty_array.rs:12:16
|
LL | &empty[0..=0];
| ^
error: range is out of bounds
--> $DIR/empty_array.rs:13:15
|
LL | &empty[..=0];
| ^
error: aborting due to 7 previous errors