summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-create.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unique/unique-create.rs')
-rw-r--r--tests/ui/unique/unique-create.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/ui/unique/unique-create.rs b/tests/ui/unique/unique-create.rs
deleted file mode 100644
index c566e7962..000000000
--- a/tests/ui/unique/unique-create.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-// pretty-expanded FIXME #23616
-
-pub fn main() {
- let _: Box<_> = Box::new(100);
-}
-
-fn vec() {
- vec![0];
-}