mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
11 lines
228 B
Rust
11 lines
228 B
Rust
|
#![warn(clippy::out_of_bounds_indexing)]
|
||
|
|
||
|
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
|
||
|
}
|