Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
numbers-arithmetic
/
overflowing-rsh-3.rs
blob: 1e052990a7630a0749447067dd9c1194d2703ad3 [
file
] [
log
] [
blame
]
// build-fail
// compile-flags: -C debug-assertions
#![
deny
(
arithmetic_overflow
)]
fn
main
()
{
let
_x
=
-
1
_i64
>>
64
;
//~^ ERROR: this arithmetic operation will overflow
}