blob: 88928c9959666cba430e53487a2683d398c4bcd5 (
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 _n = 1i64 >> [64][0];
//~^ ERROR: this arithmetic operation will overflow
}
|