summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/overflowing-rsh-3.rs
blob: 8ee6dde93eafe5793665df7595f10cff1fd968c7 (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_i64 >> 64;
    //~^ ERROR: this arithmetic operation will overflow
}