summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/check_const-feature-gated.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/check_const-feature-gated.rs')
-rw-r--r--src/test/ui/consts/check_const-feature-gated.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/test/ui/consts/check_const-feature-gated.rs b/src/test/ui/consts/check_const-feature-gated.rs
new file mode 100644
index 000000000..f4faab1ab
--- /dev/null
+++ b/src/test/ui/consts/check_const-feature-gated.rs
@@ -0,0 +1,7 @@
+// run-pass
+
+const ARR: [usize; 1] = [2];
+
+fn main() {
+ let _ = 5 << ARR[0];
+}