summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-adjusted-lvalue-op.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-adjusted-lvalue-op.stderr')
-rw-r--r--src/test/ui/regions/regions-adjusted-lvalue-op.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/regions/regions-adjusted-lvalue-op.stderr b/src/test/ui/regions/regions-adjusted-lvalue-op.stderr
deleted file mode 100644
index 2c5563444..000000000
--- a/src/test/ui/regions/regions-adjusted-lvalue-op.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0502]: cannot borrow `v` as immutable because it is also borrowed as mutable
- --> $DIR/regions-adjusted-lvalue-op.rs:14:16
- |
-LL | v[0].oh_no(&v);
- | - ----- ^^ immutable borrow occurs here
- | | |
- | | mutable borrow later used by call
- | mutable borrow occurs here
-
-error[E0502]: cannot borrow `v` as immutable because it is also borrowed as mutable
- --> $DIR/regions-adjusted-lvalue-op.rs:15:16
- |
-LL | (*v).oh_no(&v);
- | - ----- ^^ immutable borrow occurs here
- | | |
- | | mutable borrow later used by call
- | mutable borrow occurs here
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0502`.