summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/const-eval-overflow2c.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-eval/const-eval-overflow2c.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-eval/const-eval-overflow2c.rs')
-rw-r--r--src/test/ui/consts/const-eval/const-eval-overflow2c.rs79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/test/ui/consts/const-eval/const-eval-overflow2c.rs b/src/test/ui/consts/const-eval/const-eval-overflow2c.rs
new file mode 100644
index 000000000..bac4d042e
--- /dev/null
+++ b/src/test/ui/consts/const-eval/const-eval-overflow2c.rs
@@ -0,0 +1,79 @@
+#![allow(unused_imports)]
+
+// Note: the relevant lint pass here runs before some of the constant
+// evaluation below (e.g., that performed by codegen and llvm), so if you
+// change this warn to a deny, then the compiler will exit before
+// those errors are detected.
+
+#![deny(const_err)]
+
+use std::fmt;
+
+const VALS_I8: (i8,) =
+ (
+ i8::MIN * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_I16: (i16,) =
+ (
+ i16::MIN * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_I32: (i32,) =
+ (
+ i32::MIN * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_I64: (i64,) =
+ (
+ i64::MIN * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_U8: (u8,) =
+ (
+ u8::MAX * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_U16: (u16,) = (
+ u16::MAX * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_U32: (u32,) = (
+ u32::MAX * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+const VALS_U64: (u64,) =
+ (
+ u64::MAX * 2,
+ );
+ //~^^ ERROR any use of this value will cause an error
+ //~| WARN this was previously accepted by the compiler but is being phased out
+
+fn main() {
+ foo(VALS_I8);
+ foo(VALS_I16);
+ foo(VALS_I32);
+ foo(VALS_I64);
+
+ foo(VALS_U8);
+ foo(VALS_U16);
+ foo(VALS_U32);
+ foo(VALS_U64);
+}
+
+fn foo<T>(_: T) {
+}