2024-03-07 10:19:29 -06:00
|
|
|
//@compile-flags: -Zdeduplicate-diagnostics=yes
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::indexing_slicing)]
|
2019-07-16 00:30:23 -05:00
|
|
|
// We also check the out_of_bounds_indexing lint here, because it lints similar things and
|
|
|
|
// we want to avoid false positives.
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::out_of_bounds_indexing)]
|
2023-07-02 07:35:19 -05:00
|
|
|
#![allow(
|
|
|
|
unconditional_panic,
|
|
|
|
clippy::no_effect,
|
|
|
|
clippy::unnecessary_operation,
|
|
|
|
clippy::useless_vec
|
|
|
|
)]
|
2022-04-07 12:39:59 -05:00
|
|
|
|
|
|
|
const ARR: [i32; 2] = [1, 2];
|
2022-12-17 07:12:54 -06:00
|
|
|
const REF: &i32 = &ARR[idx()]; // This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
2022-04-07 12:39:59 -05:00
|
|
|
|
|
|
|
const fn idx() -> usize {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
const fn idx4() -> usize {
|
|
|
|
4
|
|
|
|
}
|
2015-12-21 12:22:29 -06:00
|
|
|
|
|
|
|
fn main() {
|
2018-05-22 23:56:02 -05:00
|
|
|
let x = [1, 2, 3, 4];
|
|
|
|
let index: usize = 1;
|
|
|
|
x[index];
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
|
|
|
// Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
|
|
|
x[4];
|
|
|
|
// Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
|
|
|
x[1 << 3];
|
2018-06-14 15:04:37 -05:00
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
// Ok, should not produce stderr.
|
|
|
|
x[0];
|
|
|
|
// Ok, should not produce stderr.
|
|
|
|
x[3];
|
|
|
|
// Ok, should not produce stderr.
|
|
|
|
x[const { idx() }];
|
|
|
|
// Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
|
|
|
x[const { idx4() }];
|
|
|
|
// This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
|
|
|
const { &ARR[idx()] };
|
|
|
|
//~^ ERROR: indexing may panic
|
|
|
|
// This should be linted, since `suppress-restriction-lint-in-const` default is false.
|
|
|
|
const { &ARR[idx4()] };
|
|
|
|
//~^ ERROR: indexing may panic
|
2016-03-11 03:51:16 -06:00
|
|
|
|
|
|
|
let y = &x;
|
2023-08-24 14:32:12 -05:00
|
|
|
// Ok, referencing shouldn't affect this lint. See the issue 6021
|
|
|
|
y[0];
|
|
|
|
// Ok, rustc will handle references too.
|
|
|
|
y[4];
|
2018-06-14 15:04:37 -05:00
|
|
|
|
2018-05-22 23:56:02 -05:00
|
|
|
let v = vec![0; 5];
|
|
|
|
v[0];
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
2018-05-22 23:56:02 -05:00
|
|
|
v[10];
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
2018-06-14 15:04:37 -05:00
|
|
|
v[1 << 3];
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
2018-06-15 10:54:38 -05:00
|
|
|
|
2023-08-24 14:32:12 -05:00
|
|
|
// Out of bounds
|
|
|
|
const N: usize = 15;
|
|
|
|
// In bounds
|
|
|
|
const M: usize = 3;
|
|
|
|
// Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
|
|
|
x[N];
|
|
|
|
// Ok, should not produce stderr.
|
|
|
|
x[M];
|
2018-06-15 10:54:38 -05:00
|
|
|
v[N];
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
2018-06-15 10:54:38 -05:00
|
|
|
v[M];
|
2023-08-24 14:32:12 -05:00
|
|
|
//~^ ERROR: indexing may panic
|
2023-12-28 12:33:07 -06:00
|
|
|
|
|
|
|
let slice = &x;
|
|
|
|
let _ = x[4];
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|