2022-04-07 17:39:59 +00:00
|
|
|
#![feature(inline_const)]
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::indexing_slicing)]
|
2019-07-16 05:30:23 +00: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 15:34:52 +00:00
|
|
|
#![warn(clippy::out_of_bounds_indexing)]
|
2022-09-21 11:05:20 +00:00
|
|
|
#![allow(unconditional_panic, clippy::no_effect, clippy::unnecessary_operation)]
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
|
|
const ARR: [i32; 2] = [1, 2];
|
|
|
|
const REF: &i32 = &ARR[idx()]; // Ok, should not produce stderr.
|
|
|
|
const REF_ERR: &i32 = &ARR[idx4()]; // Ok, let rustc handle const contexts.
|
|
|
|
|
|
|
|
const fn idx() -> usize {
|
|
|
|
1
|
|
|
|
}
|
|
|
|
const fn idx4() -> usize {
|
|
|
|
4
|
|
|
|
}
|
2015-12-21 18:22:29 +00:00
|
|
|
|
|
|
|
fn main() {
|
2018-05-23 04:56:02 +00:00
|
|
|
let x = [1, 2, 3, 4];
|
|
|
|
let index: usize = 1;
|
|
|
|
x[index];
|
2022-04-07 17:39:59 +00:00
|
|
|
x[4]; // Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
|
|
|
x[1 << 3]; // Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
|
|
x[0]; // Ok, should not produce stderr.
|
|
|
|
x[3]; // Ok, should not produce stderr.
|
2022-04-07 17:39:59 +00:00
|
|
|
x[const { idx() }]; // Ok, should not produce stderr.
|
|
|
|
x[const { idx4() }]; // Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
|
|
|
const { &ARR[idx()] }; // Ok, should not produce stderr.
|
|
|
|
const { &ARR[idx4()] }; // Ok, let rustc handle const contexts.
|
2016-03-11 09:51:16 +00:00
|
|
|
|
|
|
|
let y = &x;
|
2020-09-24 12:49:22 +00:00
|
|
|
y[0]; // Ok, referencing shouldn't affect this lint. See the issue 6021
|
|
|
|
y[4]; // Ok, rustc will handle references too.
|
2018-06-14 20:04:37 +00:00
|
|
|
|
2018-05-23 04:56:02 +00:00
|
|
|
let v = vec![0; 5];
|
|
|
|
v[0];
|
|
|
|
v[10];
|
2018-06-14 20:04:37 +00:00
|
|
|
v[1 << 3];
|
2018-06-15 15:54:38 +00:00
|
|
|
|
|
|
|
const N: usize = 15; // Out of bounds
|
|
|
|
const M: usize = 3; // In bounds
|
2022-04-07 17:39:59 +00:00
|
|
|
x[N]; // Ok, let rustc's `unconditional_panic` lint handle `usize` indexing on arrays.
|
2018-06-15 15:54:38 +00:00
|
|
|
x[M]; // Ok, should not produce stderr.
|
|
|
|
v[N];
|
|
|
|
v[M];
|
2015-12-21 18:22:29 +00:00
|
|
|
}
|