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