rust/tests/compile-fail/array_indexing.rs

33 lines
871 B
Rust
Raw Normal View History

#![feature(inclusive_range_syntax, plugin)]
2015-12-21 19:22:29 +01:00
#![plugin(clippy)]
#![deny(indexing_slicing)]
2015-12-21 19:22:29 +01:00
#![deny(out_of_bounds_indexing)]
2016-02-11 13:50:41 +01:00
#![allow(no_effect)]
2015-12-21 19:22:29 +01:00
fn main() {
let x = [1,2,3,4];
x[0];
x[3];
x[4]; //~ERROR: indexing may panic
//~^ ERROR: const index is out of bounds
x[1 << 3]; //~ERROR: indexing may panic
//~^ ERROR: const index is out of bounds
&x[1..5]; //~ERROR: slicing may panic
//~^ ERROR: range is out of bounds
&x[0..3];
&x[0...4]; //~ERROR: slicing may panic
//~^ ERROR: range is out of bounds
&x[..];
&x[1..];
&x[..4];
&x[..5]; //~ERROR: slicing may panic
//~^ ERROR: range is out of bounds
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 19:22:29 +01:00
}