]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/panic/overflowing-lsh-neg.rs
Rollup merge of #102098 - xfix:weak-upgrade-fetch-update, r=Mark-Simulacrum
[rust.git] / src / tools / miri / tests / panic / overflowing-lsh-neg.rs
1 #![allow(arithmetic_overflow)]
2
3 fn main() {
4     let _n = 2i64 << -1;
5 }