rust-clippy/tests/ui/out_of_bounds_indexing/issue-3102.rs
Philipp Hansch 7a888968f9
Allow no_effect lint
for cleaner stderr file

Co-Authored-By: Philipp Krones <hello@philkrones.com>
2019-07-16 21:29:03 +02:00

11 lines
257 B
Rust

#![warn(clippy::out_of_bounds_indexing)]
#![allow(clippy::no_effect)]
fn main() {
let x = [1, 2, 3, 4];
// issue 3102
let num = 1;
&x[num..10]; // should trigger out of bounds error
&x[10..num]; // should trigger out of bounds error
}