rust/tests/run-pass/panic/overflowing-lsh-neg.rs
2020-02-21 10:33:00 +01:00

7 lines
142 B
Rust

// ignore-windows: Unwind panicking does not currently work on Windows
#![allow(arithmetic_overflow)]
fn main() {
let _n = 2i64 << -1;
}