rust/tests/panic/panic/overflowing-lsh-neg.rs
2022-06-01 10:53:38 -04:00

6 lines
71 B
Rust

#![allow(arithmetic_overflow)]
fn main() {
let _n = 2i64 << -1;
}