summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-expr-in-fixed-length-vec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-expr-in-fixed-length-vec.rs')
-rw-r--r--src/test/ui/consts/const-expr-in-fixed-length-vec.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/consts/const-expr-in-fixed-length-vec.rs b/src/test/ui/consts/const-expr-in-fixed-length-vec.rs
deleted file mode 100644
index a9960b455..000000000
--- a/src/test/ui/consts/const-expr-in-fixed-length-vec.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// run-pass
-// Check that constant expressions can be used for declaring the
-// type of a fixed length vector.
-
-// pretty-expanded FIXME #23616
-
-pub fn main() {
-
- const FOO: usize = 2;
- let _v: [isize; FOO*3];
-
-}