]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/panic/overflowing-rsh-1.rs
Auto merge of #99609 - workingjubilee:lossy-unix-strerror, r=thomcc
[rust.git] / src / tools / miri / tests / panic / overflowing-rsh-1.rs
1 #![allow(arithmetic_overflow)]
2
3 fn main() {
4     let _n = 1i64 >> 64;
5 }