mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-19 17:44:21 +00:00
55 lines
1.1 KiB
Text
55 lines
1.1 KiB
Text
|
error: index out of bounds: the len is 0 but the index is 0
|
||
|
--> $DIR/empty_array.rs:6:5
|
||
|
|
|
||
|
LL | empty[0]; // Ok, let rustc's `const_err` lint handle `usize` indexing on arrays.
|
||
|
| ^^^^^^^^
|
||
|
|
|
||
|
= note: #[deny(const_err)] on by default
|
||
|
|
||
|
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 8 previous errors
|
||
|
|