summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-87935-unsized-box-expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/typeck/issue-87935-unsized-box-expr.rs')
-rw-r--r--tests/ui/typeck/issue-87935-unsized-box-expr.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/ui/typeck/issue-87935-unsized-box-expr.rs b/tests/ui/typeck/issue-87935-unsized-box-expr.rs
deleted file mode 100644
index cd2a82074..000000000
--- a/tests/ui/typeck/issue-87935-unsized-box-expr.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#![feature(box_syntax)]
-// Box expression needs to be movable, and hence has to be of a Sized type.
-fn main() {
- let _x: Box<[u32]> = box { loop {} };
- //~^ ERROR: the size for values of type `[u32]` cannot be known at compilation time
-
- // Check that a deduced size does not cause issues.
- let _y: Box<[u32]> = box [];
- let _z: Box<[u32; 0]> = box { loop {} };
-}