2022-12-17 13:12:54 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:15:20
|
2022-12-17 13:12:54 +00:00
|
|
|
|
|
|
|
|
LL | const REF: &i32 = &ARR[idx()]; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= 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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::indexing_slicing)]`
|
2022-12-17 13:12:54 +00:00
|
|
|
|
2022-05-05 13:27:11 +00:00
|
|
|
error[E0080]: evaluation of `main::{constant#3}` failed
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:47:14
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | const { &ARR[idx4()] };
|
2022-04-07 17:39:59 +00:00
|
|
|
| ^^^^^^^^^^^ index out of bounds: the length is 2 but the index is 4
|
|
|
|
|
2023-09-11 21:09:11 +00:00
|
|
|
note: erroneous constant encountered
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:47:5
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | const { &ARR[idx4()] };
|
2022-11-15 11:06:20 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2022-04-07 17:39:59 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:28:5
|
2020-02-03 06:09:17 +00:00
|
|
|
|
|
|
|
|
LL | x[index];
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2022-12-17 13:12:54 +00:00
|
|
|
|
2023-12-28 18:33:07 +00:00
|
|
|
error: index is out of bounds
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:31:5
|
2023-12-28 18:33:07 +00:00
|
|
|
|
|
|
|
|
LL | x[4];
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
|
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::out_of_bounds_indexing)]`
|
|
|
|
|
|
|
|
error: index is out of bounds
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:33:5
|
2023-12-28 18:33:07 +00:00
|
|
|
|
|
|
|
|
LL | x[1 << 3];
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2022-12-17 13:12:54 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:44:14
|
2022-12-17 13:12:54 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | const { &ARR[idx()] };
|
2022-12-17 13:12:54 +00: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
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:47:14
|
2022-12-17 13:12:54 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | const { &ARR[idx4()] };
|
2022-12-17 13:12:54 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
|
|
|
= note: the suggestion might not be applicable in constant blocks
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2023-12-28 18:33:07 +00:00
|
|
|
error: index is out of bounds
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:54:5
|
2023-12-28 18:33:07 +00:00
|
|
|
|
|
|
|
|
LL | y[4];
|
|
|
|
| ^^^^
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:57:5
|
2020-02-03 06:09:17 +00:00
|
|
|
|
|
|
|
|
LL | v[0];
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:59:5
|
2020-02-03 06:09:17 +00:00
|
|
|
|
|
|
|
|
LL | v[10];
|
|
|
|
| ^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:61:5
|
2020-02-03 06:09:17 +00:00
|
|
|
|
|
|
|
|
LL | v[1 << 3];
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2023-12-28 18:33:07 +00:00
|
|
|
error: index is out of bounds
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:69:5
|
2023-12-28 18:33:07 +00:00
|
|
|
|
|
|
|
|
LL | x[N];
|
|
|
|
| ^^^^
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:72:5
|
2020-02-03 06:09:17 +00:00
|
|
|
|
|
|
|
|
LL | v[N];
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: indexing may panic
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:74:5
|
2020-02-03 06:09:17 +00:00
|
|
|
|
|
|
|
|
LL | v[M];
|
|
|
|
| ^^^^
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
= help: consider using `.get(n)` or `.get_mut(n)` instead
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2023-12-28 18:33:07 +00:00
|
|
|
error: index is out of bounds
|
2024-04-19 16:01:35 +00:00
|
|
|
--> tests/ui/indexing_slicing_index.rs:78:13
|
2023-12-28 18:33:07 +00:00
|
|
|
|
|
|
|
|
LL | let _ = x[4];
|
|
|
|
| ^^^^
|
|
|
|
|
2024-02-14 12:28:07 +00:00
|
|
|
error: aborting due to 15 previous errors
|
2020-02-03 06:09:17 +00:00
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|