summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dropck/drop-with-active-borrows-1.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/dropck/drop-with-active-borrows-1.stderr')
-rw-r--r--src/test/ui/dropck/drop-with-active-borrows-1.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ui/dropck/drop-with-active-borrows-1.stderr b/src/test/ui/dropck/drop-with-active-borrows-1.stderr
new file mode 100644
index 000000000..8d6a7f372
--- /dev/null
+++ b/src/test/ui/dropck/drop-with-active-borrows-1.stderr
@@ -0,0 +1,13 @@
+error[E0505]: cannot move out of `a` because it is borrowed
+ --> $DIR/drop-with-active-borrows-1.rs:4:10
+ |
+LL | let b: Vec<&str> = a.lines().collect();
+ | --------- borrow of `a` occurs here
+LL | drop(a);
+ | ^ move out of `a` occurs here
+LL | for s in &b {
+ | -- borrow later used here
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0505`.