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