Sign in
fuchsia
/
third_party
/
rust
/
5a2fceefd312ec027bdeaa89ebefbe4c33d94de1
/
.
/
src
/
tools
/
miri
/
tests
/
panic
/
overflowing-lsh-neg.rs
blob: bf5eed1c550f1b1b4f81491454e2825a5e8e6f28 [
file
]
#![
allow
(
arithmetic_overflow
)]
fn
main
()
{
let
_n
=
2i64
<<
-
1
;
}