summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/move-arg-2-unique.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/move-arg-2-unique.rs')
-rw-r--r--src/test/ui/moves/move-arg-2-unique.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/moves/move-arg-2-unique.rs b/src/test/ui/moves/move-arg-2-unique.rs
deleted file mode 100644
index 9622c8375..000000000
--- a/src/test/ui/moves/move-arg-2-unique.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// run-pass
-
-fn test(foo: Box<Vec<isize>> ) { assert_eq!((*foo)[0], 10); }
-
-pub fn main() {
- let x = Box::new(vec![10]);
- // Test forgetting a local by move-in
- test(x);
-
- // Test forgetting a temporary by move-in.
- test(Box::new(vec![10]));
-}