summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-decl-init-copy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unique/unique-decl-init-copy.rs')
-rw-r--r--tests/ui/unique/unique-decl-init-copy.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/ui/unique/unique-decl-init-copy.rs b/tests/ui/unique/unique-decl-init-copy.rs
deleted file mode 100644
index 5b9576fcc..000000000
--- a/tests/ui/unique/unique-decl-init-copy.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// run-pass
-
-pub fn main() {
- let mut i: Box<_> = Box::new(1);
- // Should be a copy
- let mut j = i.clone();
- *i = 2;
- *j = 3;
- assert_eq!(*i, 2);
- assert_eq!(*j, 3);
-}