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