summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/two-phase-across-loop.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/two-phase-across-loop.stderr')
-rw-r--r--tests/ui/borrowck/two-phase-across-loop.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/borrowck/two-phase-across-loop.stderr b/tests/ui/borrowck/two-phase-across-loop.stderr
new file mode 100644
index 000000000..22f9b39df
--- /dev/null
+++ b/tests/ui/borrowck/two-phase-across-loop.stderr
@@ -0,0 +1,12 @@
+error[E0499]: cannot borrow `foo` as mutable more than once at a time
+ --> $DIR/two-phase-across-loop.rs:17:22
+ |
+LL | strings.push(foo.get_string());
+ | -------------^^^^^^^^^^^^^^^^-
+ | | |
+ | | `foo` was mutably borrowed here in the previous iteration of the loop
+ | first borrow used here, in later iteration of loop
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0499`.