Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-12253.rs
blob: 58ad7c3bfbf521392227356575cb97e6fcc3dd2d [
file
] [
log
] [
blame
]
//@ check-pass
#[
allow
(
overflowing_literals
,
unconditional_panic
,
clippy
::
no_effect
)]
fn
main
()
{
let
arr
:
[
i32
;
5
]
=
[
0
;
5
];
arr
[
0xfffffe7ffffffffffffffffffffffff
];
}