Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
numbers-arithmetic
/
overflowing-rsh-5.rs
blob: f75e779ed158c68dcafc1032199a8f6b90c55e66 [
file
] [
log
] [
blame
]
// build-fail
// compile-flags: -C debug-assertions
#![
deny
(
arithmetic_overflow
)]
fn
main
()
{
let
_n
=
1i64
>>
[
64
][
0
];
//~^ ERROR: this arithmetic operation will overflow
}