summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-move-subcomponent.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-move-subcomponent.stderr')
-rw-r--r--src/test/ui/borrowck/borrowck-move-subcomponent.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ui/borrowck/borrowck-move-subcomponent.stderr b/src/test/ui/borrowck/borrowck-move-subcomponent.stderr
new file mode 100644
index 000000000..8c9083fcf
--- /dev/null
+++ b/src/test/ui/borrowck/borrowck-move-subcomponent.stderr
@@ -0,0 +1,13 @@
+error[E0505]: cannot move out of `a.x` because it is borrowed
+ --> $DIR/borrowck-move-subcomponent.rs:15:14
+ |
+LL | let pb = &a;
+ | -- borrow of `a` occurs here
+LL | let S { x: ax } = a;
+ | ^^ move out of `a.x` occurs here
+LL | f(pb);
+ | -- borrow later used here
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0505`.