summaryrefslogtreecommitdiffstats
path: root/tests/ui/numbers-arithmetic/overflowing-rsh-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/numbers-arithmetic/overflowing-rsh-3.rs')
-rw-r--r--tests/ui/numbers-arithmetic/overflowing-rsh-3.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/numbers-arithmetic/overflowing-rsh-3.rs b/tests/ui/numbers-arithmetic/overflowing-rsh-3.rs
new file mode 100644
index 000000000..1e052990a
--- /dev/null
+++ b/tests/ui/numbers-arithmetic/overflowing-rsh-3.rs
@@ -0,0 +1,9 @@
+// build-fail
+// compile-flags: -C debug-assertions
+
+#![deny(arithmetic_overflow)]
+
+fn main() {
+ let _x = -1_i64 >> 64;
+ //~^ ERROR: this arithmetic operation will overflow
+}