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