rust/tests/ui/out_of_bounds_indexing/issue-3102.rs

15 lines
335 B
Rust
Raw Normal View History

#![warn(clippy::out_of_bounds_indexing)]
2022-09-21 06:05:20 -05:00
#![allow(clippy::no_effect)]
fn main() {
let x = [1, 2, 3, 4];
// issue 3102
let num = 1;
&x[num..10];
//~^ ERROR: range is out of bounds
//~| NOTE: `-D clippy::out-of-bounds-indexing` implied by `-D warnings`
&x[10..num];
//~^ ERROR: range is out of bounds
}