summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/loan_ends_mid_block_vec.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/loan_ends_mid_block_vec.stderr')
-rw-r--r--src/test/ui/nll/loan_ends_mid_block_vec.stderr39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/test/ui/nll/loan_ends_mid_block_vec.stderr b/src/test/ui/nll/loan_ends_mid_block_vec.stderr
deleted file mode 100644
index 22c72af61..000000000
--- a/src/test/ui/nll/loan_ends_mid_block_vec.stderr
+++ /dev/null
@@ -1,39 +0,0 @@
-error[E0499]: cannot borrow `data` as mutable more than once at a time
- --> $DIR/loan_ends_mid_block_vec.rs:11:5
- |
-LL | let slice = &mut data;
- | --------- first mutable borrow occurs here
-LL | capitalize(slice);
-LL | data.push('d');
- | ^^^^^^^^^^^^^^ second mutable borrow occurs here
-...
-LL | capitalize(slice);
- | ----- first borrow later used here
-
-error[E0499]: cannot borrow `data` as mutable more than once at a time
- --> $DIR/loan_ends_mid_block_vec.rs:13:5
- |
-LL | let slice = &mut data;
- | --------- first mutable borrow occurs here
-...
-LL | data.push('e');
- | ^^^^^^^^^^^^^^ second mutable borrow occurs here
-...
-LL | capitalize(slice);
- | ----- first borrow later used here
-
-error[E0499]: cannot borrow `data` as mutable more than once at a time
- --> $DIR/loan_ends_mid_block_vec.rs:15:5
- |
-LL | let slice = &mut data;
- | --------- first mutable borrow occurs here
-...
-LL | data.push('f');
- | ^^^^^^^^^^^^^^ second mutable borrow occurs here
-LL |
-LL | capitalize(slice);
- | ----- first borrow later used here
-
-error: aborting due to 3 previous errors
-
-For more information about this error, try `rustc --explain E0499`.