2022-11-24 09:43:11 +08:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:14:20
|
2022-11-24 09:43:11 +08:00
|
|
|
|
|
2022-11-28 17:40:00 +08:00
|
|
|
LL | const REF: &i32 = &ARR[idx()]; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= 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
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:15:24
|
2022-11-24 09:43:11 +08:00
|
|
|
|
|
|
|
|
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 14:27:11 +01:00
|
|
|
error[E0080]: evaluation of `main::{constant#3}` failed
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:36:14
|
2022-04-07 18:39:59 +01:00
|
|
|
|
|
2022-11-28 17:40:00 +08:00
|
|
|
LL | const { &ARR[idx4()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
2022-04-07 18:39:59 +01:00
|
|
|
| ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4
|
|
|
|
|
2022-11-15 12:06:20 +01:00
|
|
|
note: erroneous constant used
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:36:5
|
2022-04-07 18:39:59 +01:00
|
|
|
|
|
2022-11-28 17:40:00 +08:00
|
|
|
LL | const { &ARR[idx4()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
2022-11-15 12:06:20 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2022-04-07 18:39:59 +01:00
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:27:5
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
|
|
|
LL | x[index];
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^^^^^
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
2022-11-24 09:43:11 +08:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
|
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:35:14
|
2022-11-24 09:43:11 +08:00
|
|
|
|
|
2022-11-28 17:40:00 +08:00
|
|
|
LL | const { &ARR[idx()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
= note: the suggestion might not be applicable in constant blocks
|
|
|
|
|
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:36:14
|
2022-11-24 09:43:11 +08:00
|
|
|
|
|
2022-11-28 17:40:00 +08:00
|
|
|
LL | const { &ARR[idx4()] }; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
= note: the suggestion might not be applicable in constant blocks
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:43:5
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
|
|
|
LL | v[0];
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:44:5
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
|
|
|
LL | v[10];
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:45:5
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
|
|
|
LL | v[1 << 3];
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:51:5
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
|
|
|
LL | v[N];
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
error: indexing may panic
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:52:5
|
2020-02-03 15:09:17 +09:00
|
|
|
|
|
|
|
|
LL | v[M];
|
2022-11-24 09:43:11 +08:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2022-09-21 13:05:20 +02:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2023-06-06 22:56:57 +02:00
|
|
|
--> $DIR/indexing_slicing_index.rs:15:24
|
2022-09-21 13:05:20 +02:00
|
|
|
|
|
|
|
|
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-28 17:40:00 +08:00
|
|
|
error: aborting due to 12 previous errors
|
2020-02-03 15:09:17 +09:00
|
|
|
|
2022-04-07 18:39:59 +01:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|