blob: f1488cf8559a2e340d0c8054ad2f339eaf6cf1ea (
plain)
1
2
3
4
5
6
7
8
9
|
// build-fail
// compile-flags: -C debug-assertions
#![deny(arithmetic_overflow, const_err)]
fn main() {
let _x = -1_i32 >> 32;
//~^ ERROR: this arithmetic operation will overflow
}
|