summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/two-phase-sneaky.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/two-phase-sneaky.stderr')
-rw-r--r--src/test/ui/borrowck/two-phase-sneaky.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/borrowck/two-phase-sneaky.stderr b/src/test/ui/borrowck/two-phase-sneaky.stderr
new file mode 100644
index 000000000..117d7ceae
--- /dev/null
+++ b/src/test/ui/borrowck/two-phase-sneaky.stderr
@@ -0,0 +1,14 @@
+error[E0499]: cannot borrow `v` as mutable more than once at a time
+ --> $DIR/two-phase-sneaky.rs:10:9
+ |
+LL | v[0].push_str({
+ | - -------- first borrow later used by call
+ | |
+ | first mutable borrow occurs here
+LL |
+LL | v.push(format!("foo"));
+ | ^^^^^^^^^^^^^^^^^^^^^^ second mutable borrow occurs here
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0499`.