2022-05-05 08:27:11 -05:00
|
|
|
error[E0080]: evaluation of `main::{constant#3}` failed
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $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
|
|
|
|
|
|
|
|
error[E0080]: erroneous constant used
|
|
|
|
--> $DIR/indexing_slicing_index.rs:31:5
|
|
|
|
|
|
|
|
|
LL | const { &ARR[idx4()] }; // Ok, let rustc handle const contexts.
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $DIR/indexing_slicing_index.rs:22:5
|
2020-02-03 00:09:17 -06:00
|
|
|
|
|
|
|
|
LL | x[index];
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::indexing-slicing` implied by `-D warnings`
|
2020-02-03 00:09:17 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $DIR/indexing_slicing_index.rs:38:5
|
2020-02-03 00:09:17 -06:00
|
|
|
|
|
|
|
|
LL | v[0];
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 00:09:17 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $DIR/indexing_slicing_index.rs:39:5
|
2020-02-03 00:09:17 -06:00
|
|
|
|
|
|
|
|
LL | v[10];
|
|
|
|
| ^^^^^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 00:09:17 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $DIR/indexing_slicing_index.rs:40:5
|
2020-02-03 00:09:17 -06:00
|
|
|
|
|
|
|
|
LL | v[1 << 3];
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 00:09:17 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $DIR/indexing_slicing_index.rs:46:5
|
2020-02-03 00:09:17 -06:00
|
|
|
|
|
|
|
|
LL | v[N];
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 00:09:17 -06:00
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
error: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
--> $DIR/indexing_slicing_index.rs:47:5
|
2020-02-03 00:09:17 -06:00
|
|
|
|
|
|
|
|
LL | v[M];
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-12 08:30:50 -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
|
|
|
|
|
|
|
|
error: aborting due to 9 previous errors
|
2020-02-03 00:09:17 -06:00
|
|
|
|
2022-04-07 12:39:59 -05:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|