Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
numbers-arithmetic
/
overflowing-lsh-2.rs
blob: 76718ecd1fa7a21b9ffd92f428412067c1a6ca85 [
file
] [
log
] [
blame
]
// build-fail
// compile-flags: -C debug-assertions
#![
deny
(
arithmetic_overflow
)]
fn
main
()
{
let
_x
=
1
<<
-
1
;
//~^ ERROR: this arithmetic operation will overflow
}