summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/issue-82462.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/issue-82462.stderr')
-rw-r--r--src/test/ui/borrowck/issue-82462.stderr22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/borrowck/issue-82462.stderr b/src/test/ui/borrowck/issue-82462.stderr
deleted file mode 100644
index a2c291f77..000000000
--- a/src/test/ui/borrowck/issue-82462.stderr
+++ /dev/null
@@ -1,22 +0,0 @@
-error[E0502]: cannot borrow `v` as mutable because it is also borrowed as immutable
- --> $DIR/issue-82462.rs:18:9
- |
-LL | for x in DroppingSlice(&*v).iter() {
- | ------------------
- | | |
- | | immutable borrow occurs here
- | a temporary with access to the immutable borrow is created here ...
-LL | v.push(*x);
- | ^^^^^^^^^^ mutable borrow occurs here
-LL | break;
-LL | }
- | - ... and the immutable borrow might be used here, when that temporary is dropped and runs the `Drop` code for type `DroppingSlice`
- |
-help: consider adding semicolon after the expression so its temporaries are dropped sooner, before the local variables declared by the block are dropped
- |
-LL | };
- | +
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0502`.