2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::indexing_slicing)]
|
2019-07-16 07:30:23 +02: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 17:34:52 +02:00
|
|
|
#![warn(clippy::out_of_bounds_indexing)]
|
|
|
|
#![allow(clippy::no_effect, clippy::unnecessary_operation)]
|
2015-12-21 19:22:29 +01:00
|
|
|
|
|
|
|
fn main() {
|
2018-05-23 06:56:02 +02:00
|
|
|
let x = [1, 2, 3, 4];
|
|
|
|
let index: usize = 1;
|
|
|
|
x[index];
|
2018-06-19 23:30:43 +02:00
|
|
|
x[4]; // Ok, let rustc's `const_err` lint handle `usize` indexing on arrays.
|
|
|
|
x[1 << 3]; // Ok, let rustc's `const_err` lint handle `usize` indexing on arrays.
|
2018-06-14 22:04:37 +02:00
|
|
|
|
|
|
|
x[0]; // Ok, should not produce stderr.
|
|
|
|
x[3]; // Ok, should not produce stderr.
|
2016-03-11 10:51:16 +01:00
|
|
|
|
|
|
|
let y = &x;
|
2017-02-08 14:58:07 +01:00
|
|
|
y[0];
|
2018-06-14 22:04:37 +02:00
|
|
|
|
2018-05-23 06:56:02 +02:00
|
|
|
let v = vec![0; 5];
|
|
|
|
v[0];
|
|
|
|
v[10];
|
2018-06-14 22:04:37 +02:00
|
|
|
v[1 << 3];
|
2018-06-15 17:54:38 +02:00
|
|
|
|
|
|
|
const N: usize = 15; // Out of bounds
|
|
|
|
const M: usize = 3; // In bounds
|
2018-06-19 23:30:43 +02:00
|
|
|
x[N]; // Ok, let rustc's `const_err` lint handle `usize` indexing on arrays.
|
2018-06-15 17:54:38 +02:00
|
|
|
x[M]; // Ok, should not produce stderr.
|
|
|
|
v[N];
|
|
|
|
v[M];
|
2015-12-21 19:22:29 +01:00
|
|
|
}
|