]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/panic/overflowing-lsh-neg.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[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 }