]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/panic/overflowing-rsh-1.rs
Rollup merge of #102095 - oli-obk:simplify, r=TaKO8Ki
[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 }