2016-03-11 03:51:16 -06:00
|
|
|
#![feature(inclusive_range_syntax, plugin)]
|
2015-12-21 12:22:29 -06:00
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2016-03-11 03:51:16 -06:00
|
|
|
#![deny(indexing_slicing)]
|
2015-12-21 12:22:29 -06:00
|
|
|
#![deny(out_of_bounds_indexing)]
|
2016-02-11 06:50:41 -06:00
|
|
|
#![allow(no_effect)]
|
2015-12-21 12:22:29 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = [1,2,3,4];
|
|
|
|
x[0];
|
|
|
|
x[3];
|
2016-03-11 15:10:40 -06:00
|
|
|
x[4]; //~ERROR: const index is out of bounds
|
|
|
|
x[1 << 3]; //~ERROR: const index is out of bounds
|
|
|
|
&x[1..5]; //~ERROR: range is out of bounds
|
2016-03-11 03:51:16 -06:00
|
|
|
&x[0..3];
|
2016-03-11 15:10:40 -06:00
|
|
|
&x[0...4]; //~ERROR: range is out of bounds
|
2016-03-11 03:51:16 -06:00
|
|
|
&x[..];
|
|
|
|
&x[1..];
|
|
|
|
&x[..4];
|
2016-03-11 15:10:40 -06:00
|
|
|
&x[..5]; //~ERROR: range is out of bounds
|
2016-03-11 03:51:16 -06:00
|
|
|
|
|
|
|
let y = &x;
|
|
|
|
y[0]; //~ERROR: indexing may panic
|
|
|
|
&y[1..2]; //~ERROR: slicing may panic
|
|
|
|
&y[..];
|
|
|
|
&y[0...4]; //~ERROR: slicing may panic
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|