2018-03-16 08:44:20 +00:00
|
|
|
#![feature(plugin)]
|
2017-05-17 12:19:44 +00:00
|
|
|
#![warn(indexing_slicing)]
|
|
|
|
#![warn(out_of_bounds_indexing)]
|
2016-05-13 14:43:47 +00:00
|
|
|
#![allow(no_effect, unnecessary_operation)]
|
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;
|
|
|
|
let index_from: usize = 2;
|
|
|
|
let index_to: usize = 3;
|
|
|
|
x[index];
|
|
|
|
&x[index..];
|
|
|
|
&x[..index];
|
2018-06-14 20:04:37 +00:00
|
|
|
&x[index_from..index_to];
|
|
|
|
&x[index_from..][..index_to]; // Two lint reports, one for [index_from..] and another for [..index_to].
|
2018-06-19 21:30:43 +00: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.
|
2017-09-28 17:40:19 +00:00
|
|
|
&x[..=4];
|
2018-06-14 20:04:37 +00:00
|
|
|
&x[1..5];
|
|
|
|
&x[5..][..10]; // Two lint reports, one for [5..] and another for [..10].
|
2017-02-08 13:58:07 +00:00
|
|
|
&x[5..];
|
|
|
|
&x[..5];
|
2018-06-14 16:41:56 +00:00
|
|
|
&x[5..].iter().map(|x| 2 * x).collect::<Vec<i32>>();
|
2018-06-14 20:04:37 +00:00
|
|
|
&x[0..=4];
|
|
|
|
&x[0..][..3];
|
|
|
|
&x[1..][..5];
|
|
|
|
|
|
|
|
&x[4..]; // Ok, should not produce stderr.
|
|
|
|
&x[..4]; // Ok, should not produce stderr.
|
|
|
|
&x[..]; // Ok, should not produce stderr.
|
|
|
|
&x[1..]; // Ok, should not produce stderr.
|
|
|
|
&x[2..].iter().map(|x| 2 * x).collect::<Vec<i32>>(); // Ok, should not produce stderr.
|
|
|
|
&x[0..].get(..3); // Ok, should not produce stderr.
|
|
|
|
x[0]; // Ok, should not produce stderr.
|
|
|
|
x[3]; // Ok, should not produce stderr.
|
|
|
|
&x[0..3]; // Ok, should not produce stderr.
|
2016-03-11 09:51:16 +00:00
|
|
|
|
|
|
|
let y = &x;
|
2017-02-08 13:58:07 +00:00
|
|
|
y[0];
|
|
|
|
&y[1..2];
|
2017-09-28 17:40:19 +00:00
|
|
|
&y[0..=4];
|
|
|
|
&y[..=4];
|
2016-03-14 20:48:24 +00:00
|
|
|
|
2018-06-14 20:04:37 +00:00
|
|
|
&y[..]; // Ok, should not produce stderr.
|
|
|
|
|
2016-03-14 20:48:24 +00:00
|
|
|
let empty: [i8; 0] = [];
|
2018-06-19 21:30:43 +00:00
|
|
|
empty[0]; // Ok, let rustc's `const_err` lint handle `usize` indexing on arrays.
|
2017-02-08 13:58:07 +00:00
|
|
|
&empty[1..5];
|
2017-09-28 17:40:19 +00:00
|
|
|
&empty[0..=4];
|
|
|
|
&empty[..=4];
|
2017-02-08 13:58:07 +00:00
|
|
|
&empty[1..];
|
|
|
|
&empty[..4];
|
2018-06-14 20:04:37 +00:00
|
|
|
&empty[0..=0];
|
|
|
|
&empty[..=0];
|
|
|
|
|
|
|
|
&empty[0..]; // Ok, should not produce stderr.
|
|
|
|
&empty[0..0]; // Ok, should not produce stderr.
|
|
|
|
&empty[..0]; // Ok, should not produce stderr.
|
|
|
|
&empty[..]; // Ok, should not produce stderr.
|
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-05-23 04:56:02 +00:00
|
|
|
&v[10..100];
|
2018-06-14 20:04:37 +00:00
|
|
|
&x[10..][..100]; // Two lint reports, one for [10..] and another for [..100].
|
2018-05-23 04:56:02 +00:00
|
|
|
&v[10..];
|
|
|
|
&v[..100];
|
2018-06-14 20:04:37 +00:00
|
|
|
|
|
|
|
&v[..]; // Ok, should not produce stderr.
|
2018-06-15 15:54:38 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Continue tests at end function to minimize the changes to this file's corresponding stderr.
|
|
|
|
//
|
|
|
|
|
|
|
|
const N: usize = 15; // Out of bounds
|
|
|
|
const M: usize = 3; // In bounds
|
2018-06-19 21:30:43 +00:00
|
|
|
x[N]; // Ok, let rustc's `const_err` 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
|
|
|
}
|