summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/closures-in-loops.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/closures-in-loops.stderr')
-rw-r--r--tests/ui/nll/closures-in-loops.stderr10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/ui/nll/closures-in-loops.stderr b/tests/ui/nll/closures-in-loops.stderr
index 1c1a31d35..2c1008c51 100644
--- a/tests/ui/nll/closures-in-loops.stderr
+++ b/tests/ui/nll/closures-in-loops.stderr
@@ -13,9 +13,8 @@ error[E0499]: cannot borrow `x` as mutable more than once at a time
--> $DIR/closures-in-loops.rs:13:16
|
LL | v.push(|| x = String::new());
- | -------^^-------------------
- | | | |
- | | | borrows occur due to use of `x` in closure
+ | - ^^ - borrows occur due to use of `x` in closure
+ | | |
| | `x` was mutably borrowed here in the previous iteration of the loop
| first borrow used here, in later iteration of loop
@@ -23,9 +22,8 @@ error[E0524]: two closures require unique access to `x` at the same time
--> $DIR/closures-in-loops.rs:20:16
|
LL | v.push(|| *x = String::new());
- | -------^^--------------------
- | | | |
- | | | borrows occur due to use of `x` in closure
+ | - ^^ -- borrows occur due to use of `x` in closure
+ | | |
| | closures are constructed here in different iterations of loop
| first borrow used here, in later iteration of loop