rust/tests/ui/indexing_slicing_index.stderr

123 lines
3.6 KiB
Plaintext
Raw Normal View History

2022-11-23 19:43:11 -06:00
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:9:20
|
LL | const REF: &i32 = &ARR[idx()]; // Ok, should not produce stderr.
| ^^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
= note: the suggestion might not be applicable in constant blocks
= note: `-D clippy::indexing-slicing` implied by `-D warnings`
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:10:24
|
LL | const REF_ERR: &i32 = &ARR[idx4()]; // Ok, let rustc handle const contexts.
| ^^^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
= note: the suggestion might not be applicable in constant blocks
2022-05-05 08:27:11 -05:00
error[E0080]: evaluation of `main::{constant#3}` failed
--> $DIR/indexing_slicing_index.rs:31:14
|
LL | const { &ARR[idx4()] }; // Ok, let rustc handle const contexts.
| ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4
note: erroneous constant used
--> $DIR/indexing_slicing_index.rs:31:5
|
LL | const { &ARR[idx4()] }; // Ok, let rustc handle const contexts.
| ^^^^^^^^^^^^^^^^^^^^^^
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:22:5
2020-02-03 00:09:17 -06:00
|
LL | x[index];
2022-11-23 19:43:11 -06:00
| ^^^^^^^^
2020-02-03 00:09:17 -06:00
|
2022-11-23 19:43:11 -06:00
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:28:5
|
LL | x[const { idx() }]; // Ok, should not produce stderr.
| ^^^^^^^^^^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:29:5
|
LL | x[const { idx4() }]; // Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
| ^^^^^^^^^^^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:30:14
|
LL | const { &ARR[idx()] }; // Ok, should not produce stderr.
| ^^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
= note: the suggestion might not be applicable in constant blocks
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:31:14
|
LL | const { &ARR[idx4()] }; // Ok, let rustc handle const contexts.
| ^^^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
= note: the suggestion might not be applicable in constant blocks
2020-02-03 00:09:17 -06:00
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:38:5
2020-02-03 00:09:17 -06:00
|
LL | v[0];
2022-11-23 19:43:11 -06:00
| ^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
2020-02-03 00:09:17 -06:00
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:39:5
2020-02-03 00:09:17 -06:00
|
LL | v[10];
2022-11-23 19:43:11 -06:00
| ^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
2020-02-03 00:09:17 -06:00
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:40:5
2020-02-03 00:09:17 -06:00
|
LL | v[1 << 3];
2022-11-23 19:43:11 -06:00
| ^^^^^^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
2020-02-03 00:09:17 -06:00
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:46:5
2020-02-03 00:09:17 -06:00
|
LL | v[N];
2022-11-23 19:43:11 -06:00
| ^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
2020-02-03 00:09:17 -06:00
error: indexing may panic
--> $DIR/indexing_slicing_index.rs:47:5
2020-02-03 00:09:17 -06:00
|
LL | v[M];
2022-11-23 19:43:11 -06:00
| ^^^^
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
2020-02-03 00:09:17 -06:00
2022-09-21 06:05:20 -05:00
error[E0080]: evaluation of constant value failed
--> $DIR/indexing_slicing_index.rs:10:24
|
LL | const REF_ERR: &i32 = &ARR[idx4()]; // Ok, let rustc handle const contexts.
| ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4
2022-11-23 19:43:11 -06:00
error: aborting due to 14 previous errors
2020-02-03 00:09:17 -06:00
For more information about this error, try `rustc --explain E0080`.