summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-int-arithmetic-overflow.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/consts/const-int-arithmetic-overflow.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/consts/const-int-arithmetic-overflow.rs')
-rw-r--r--src/test/ui/consts/const-int-arithmetic-overflow.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-int-arithmetic-overflow.rs b/src/test/ui/consts/const-int-arithmetic-overflow.rs
new file mode 100644
index 000000000..99bbeaafd
--- /dev/null
+++ b/src/test/ui/consts/const-int-arithmetic-overflow.rs
@@ -0,0 +1,26 @@
+// run-pass
+// compile-flags: -O
+#![allow(const_err)]
+
+// Make sure arithmetic unary/binary ops actually return the right result, even when overflowing.
+// We have to put them in `const fn` and turn on optimizations to avoid overflow checks.
+
+const fn add(x: i8, y: i8) -> i8 { x+y }
+const fn sub(x: i8, y: i8) -> i8 { x-y }
+const fn mul(x: i8, y: i8) -> i8 { x*y }
+// div and rem are always checked, so we cannot test their result in case of overflow.
+const fn neg(x: i8) -> i8 { -x }
+
+fn main() {
+ const ADD_OFLOW: i8 = add(100, 100);
+ assert_eq!(ADD_OFLOW, -56);
+
+ const SUB_OFLOW: i8 = sub(100, -100);
+ assert_eq!(SUB_OFLOW, -56);
+
+ const MUL_OFLOW: i8 = mul(-100, -2);
+ assert_eq!(MUL_OFLOW, -56);
+
+ const NEG_OFLOW: i8 = neg(-128);
+ assert_eq!(NEG_OFLOW, -128);
+}