summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs
blob: 80593c8656f5180e0c1a284af2d28cec5c14a1bd (plain)
1
2
3
4
5
6
7
8
9
// build-fail
// compile-flags: -C debug-assertions

#![deny(arithmetic_overflow)]

fn main() {
    let _x = -1_i32 >> 32;
    //~^ ERROR: this arithmetic operation will overflow
}