summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/non-const-value-in-const.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/non-const-value-in-const.rs')
-rw-r--r--tests/ui/consts/non-const-value-in-const.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/consts/non-const-value-in-const.rs b/tests/ui/consts/non-const-value-in-const.rs
new file mode 100644
index 000000000..1a20b1e09
--- /dev/null
+++ b/tests/ui/consts/non-const-value-in-const.rs
@@ -0,0 +1,7 @@
+fn main() {
+ let x = 5;
+ const Y: i32 = x; //~ ERROR attempt to use a non-constant value in a constant [E0435]
+
+ let x = 5;
+ let _ = [0; x]; //~ ERROR attempt to use a non-constant value in a constant [E0435]
+}