summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-autoderef-index.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unique/unique-autoderef-index.rs')
-rw-r--r--tests/ui/unique/unique-autoderef-index.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/ui/unique/unique-autoderef-index.rs b/tests/ui/unique/unique-autoderef-index.rs
deleted file mode 100644
index ea6598a7f..000000000
--- a/tests/ui/unique/unique-autoderef-index.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-// run-pass
-
-pub fn main() {
- let i: Box<_> = Box::new(vec![100]);
- assert_eq!((*i)[0], 100);
-}