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, 0 insertions, 14 deletions
diff --git a/src/test/ui/borrowck/two-phase-sneaky.stderr b/src/test/ui/borrowck/two-phase-sneaky.stderr
deleted file mode 100644
index 117d7ceae..000000000
--- a/src/test/ui/borrowck/two-phase-sneaky.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-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`.