summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/move-subpaths-moves-root.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/move-subpaths-moves-root.rs')
-rw-r--r--src/test/ui/nll/move-subpaths-moves-root.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ui/nll/move-subpaths-moves-root.rs b/src/test/ui/nll/move-subpaths-moves-root.rs
new file mode 100644
index 000000000..d266c6bb6
--- /dev/null
+++ b/src/test/ui/nll/move-subpaths-moves-root.rs
@@ -0,0 +1,5 @@
+fn main() {
+ let x = (vec![1, 2, 3], );
+ drop(x.0);
+ drop(x); //~ ERROR use of partially moved value
+}