summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs')
-rw-r--r--src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs b/src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs
new file mode 100644
index 000000000..f1488cf85
--- /dev/null
+++ b/src/test/ui/numbers-arithmetic/overflowing-rsh-1.rs
@@ -0,0 +1,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
+}