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