rust/tests/compile-fail/array_indexing.rs
2016-01-03 14:49:59 +01:00

12 lines
244 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![deny(out_of_bounds_indexing)]
fn main() {
let x = [1,2,3,4];
x[0];
x[3];
x[4]; //~ERROR: const index-expr is out of bounds
x[1 << 3]; //~ERROR: const index-expr is out of bounds
}