]> git.proxmox.com Git - rustc.git/blob - src/test/ui/numbers-arithmetic/overflowing-rsh-3.rs
1e052990a7630a0749447067dd9c1194d2703ad3
[rustc.git] / src / test / ui / numbers-arithmetic / overflowing-rsh-3.rs
1 // build-fail
2 // compile-flags: -C debug-assertions
3
4 #![deny(arithmetic_overflow)]
5
6 fn main() {
7 let _x = -1_i64 >> 64;
8 //~^ ERROR: this arithmetic operation will overflow
9 }