rust/tests/ui/numbers-arithmetic/overflowing-rsh-5.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
184 B
Rust
Raw Normal View History

2020-04-16 01:50:32 -05:00
// build-fail
// compile-flags: -C debug-assertions
2022-09-21 06:05:20 -05:00
#![deny(arithmetic_overflow)]
2020-04-16 01:50:32 -05:00
fn main() {
let _n = 1i64 >> [64][0];
//~^ ERROR: this arithmetic operation will overflow
}