rust-clippy/tests/compile-fail/array_indexing.rs
2016-02-11 13:50:41 +01:00

13 lines
265 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![deny(out_of_bounds_indexing)]
#![allow(no_effect)]
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
}