summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/overflowing-rsh-2.rs
blob: 39127b9703b6b0fcc0695b5ff966663792b85577 (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 >> -1;
    //~^ ERROR: this arithmetic operation will overflow
}