Sign in
rust
/
rust
/
HEAD
/
.
/
src
/
tools
/
miri
/
tests
/
panic
/
overflowing-rsh-1.rs
blob: 4c0106f0fb1fd3bd7b9aa8d375f6f88c35ddbdbd [
file
] [
log
] [
blame
]
#![
allow
(
arithmetic_overflow
)]
fn
main
()
{
let
_n
=
1i64
>>
64
;
}