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, 0 insertions, 7 deletions
diff --git a/src/test/ui/consts/check_const-feature-gated.rs b/src/test/ui/consts/check_const-feature-gated.rs
deleted file mode 100644
index f4faab1ab..000000000
--- a/src/test/ui/consts/check_const-feature-gated.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-// run-pass
-
-const ARR: [usize; 1] = [2];
-
-fn main() {
- let _ = 5 << ARR[0];
-}