about summary refs log tree commit diff
path: root/tests/ui/nll/move-subpaths-moves-root.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/move-subpaths-moves-root.rs')
-rw-r--r--tests/ui/nll/move-subpaths-moves-root.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/nll/move-subpaths-moves-root.rs b/tests/ui/nll/move-subpaths-moves-root.rs
new file mode 100644
index 00000000000..d266c6bb658
--- /dev/null
+++ b/tests/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
+}