blob: e5ce80336397da9e6073c2dfadfea39bd8c40630 (
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_i32 << 32;
//~^ ERROR: this arithmetic operation will overflow
}
|