summaryrefslogtreecommitdiffstats
path: root/tests/ui/moves/move-arg-2-unique.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/moves/move-arg-2-unique.rs')
-rw-r--r--tests/ui/moves/move-arg-2-unique.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/moves/move-arg-2-unique.rs b/tests/ui/moves/move-arg-2-unique.rs
new file mode 100644
index 000000000..9622c8375
--- /dev/null
+++ b/tests/ui/moves/move-arg-2-unique.rs
@@ -0,0 +1,12 @@
+// 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]));
+}