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