rust/tests/ui/array_indexing.stderr

121 lines
2.2 KiB
Text
Raw Normal View History

error: const index is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/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
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:13:5
|
13 | x[1 << 3];
| ^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:14:6
|
14 | &x[1..5];
| ^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:16:6
|
2017-09-28 19:40:19 +02:00
16 | &x[0..=4];
| ^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:17:6
|
2017-09-28 19:40:19 +02:00
17 | &x[..=4];
| ^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:21:6
|
21 | &x[5..];
| ^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:23:6
|
23 | &x[..5];
| ^^^^^^
error: indexing may panic
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:26:5
|
26 | y[0];
| ^^^^
|
= note: `-D indexing-slicing` implied by `-D warnings`
error: slicing may panic
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:27:6
|
27 | &y[1..2];
| ^^^^^^^
error: slicing may panic
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:29:6
|
2017-09-28 19:40:19 +02:00
29 | &y[0..=4];
| ^^^^^^^^
error: slicing may panic
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:30:6
|
2017-09-28 19:40:19 +02:00
30 | &y[..=4];
| ^^^^^^^
error: const index is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:33:5
|
33 | empty[0];
| ^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:34:6
|
34 | &empty[1..5];
| ^^^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:35:6
|
2017-09-28 19:40:19 +02:00
35 | &empty[0..=4];
| ^^^^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:36:6
|
2017-09-28 19:40:19 +02:00
36 | &empty[..=4];
| ^^^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:40:6
|
2017-09-28 19:40:19 +02:00
40 | &empty[0..=0];
| ^^^^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:41:6
|
2017-09-28 19:40:19 +02:00
41 | &empty[..=0];
| ^^^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:43:6
|
43 | &empty[1..];
| ^^^^^^^^^^
error: range is out of bounds
2017-08-01 17:54:21 +02:00
--> $DIR/array_indexing.rs:44:6
|
44 | &empty[..4];
| ^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 19 previous errors