2020-04-16 06:50:32 +00:00
|
|
|
// build-fail
|
|
|
|
// compile-flags: -C debug-assertions
|
|
|
|
|
2022-09-21 11:05:20 +00:00
|
|
|
#![deny(arithmetic_overflow)]
|
2020-04-16 06:50:32 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _x = -1_i32 >> -1;
|
|
|
|
//~^ ERROR: this arithmetic operation will overflow
|
|
|
|
}
|