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