blob: 1e052990a7630a0749447067dd9c1194d2703ad3 [file] [log] [blame]
// build-fail
// compile-flags: -C debug-assertions
#![deny(arithmetic_overflow)]
fn main() {
let _x = -1_i64 >> 64;
//~^ ERROR: this arithmetic operation will overflow
}