mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
6 lines
161 B
Rust
6 lines
161 B
Rust
|
#[allow(overflowing_literals, unconditional_panic, clippy::no_effect)]
|
||
|
fn main() {
|
||
|
let arr: [i32; 5] = [0; 5];
|
||
|
arr[0xfffffe7ffffffffffffffffffffffff];
|
||
|
}
|