mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 02:23:19 +00:00
158 lines
3.5 KiB
Text
158 lines
3.5 KiB
Text
|
error: const index is out of bounds
|
||
|
--> examples/array_indexing.rs:12:5
|
||
|
|
|
||
|
12 | x[4];
|
||
|
| ^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: const index is out of bounds
|
||
|
--> examples/array_indexing.rs:13:5
|
||
|
|
|
||
|
13 | x[1 << 3];
|
||
|
| ^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:14:6
|
||
|
|
|
||
|
14 | &x[1..5];
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:16:6
|
||
|
|
|
||
|
16 | &x[0...4];
|
||
|
| ^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:17:6
|
||
|
|
|
||
|
17 | &x[...4];
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:21:6
|
||
|
|
|
||
|
21 | &x[5..];
|
||
|
| ^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:23:6
|
||
|
|
|
||
|
23 | &x[..5];
|
||
|
| ^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: indexing may panic
|
||
|
--> examples/array_indexing.rs:26:5
|
||
|
|
|
||
|
26 | y[0];
|
||
|
| ^^^^
|
||
|
|
|
||
|
= note: `-D indexing-slicing` implied by `-D warnings`
|
||
|
|
||
|
error: slicing may panic
|
||
|
--> examples/array_indexing.rs:27:6
|
||
|
|
|
||
|
27 | &y[1..2];
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
= note: `-D indexing-slicing` implied by `-D warnings`
|
||
|
|
||
|
error: slicing may panic
|
||
|
--> examples/array_indexing.rs:29:6
|
||
|
|
|
||
|
29 | &y[0...4];
|
||
|
| ^^^^^^^^
|
||
|
|
|
||
|
= note: `-D indexing-slicing` implied by `-D warnings`
|
||
|
|
||
|
error: slicing may panic
|
||
|
--> examples/array_indexing.rs:30:6
|
||
|
|
|
||
|
30 | &y[...4];
|
||
|
| ^^^^^^^
|
||
|
|
|
||
|
= note: `-D indexing-slicing` implied by `-D warnings`
|
||
|
|
||
|
error: const index is out of bounds
|
||
|
--> examples/array_indexing.rs:33:5
|
||
|
|
|
||
|
33 | empty[0];
|
||
|
| ^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:34:6
|
||
|
|
|
||
|
34 | &empty[1..5];
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:35:6
|
||
|
|
|
||
|
35 | &empty[0...4];
|
||
|
| ^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:36:6
|
||
|
|
|
||
|
36 | &empty[...4];
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:40:6
|
||
|
|
|
||
|
40 | &empty[0...0];
|
||
|
| ^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:41:6
|
||
|
|
|
||
|
41 | &empty[...0];
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:43:6
|
||
|
|
|
||
|
43 | &empty[1..];
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: range is out of bounds
|
||
|
--> examples/array_indexing.rs:44:6
|
||
|
|
|
||
|
44 | &empty[..4];
|
||
|
| ^^^^^^^^^^
|
||
|
|
|
||
|
= note: `-D out-of-bounds-indexing` implied by `-D warnings`
|
||
|
|
||
|
error: aborting due to 19 previous errors
|
||
|
|
||
|
error: Could not compile `clippy_tests`.
|
||
|
|
||
|
To learn more, run the command again with --verbose.
|