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