summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-mutate-in-guard.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/borrowck/borrowck-mutate-in-guard.stderr20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/borrowck/borrowck-mutate-in-guard.stderr b/src/test/ui/borrowck/borrowck-mutate-in-guard.stderr
deleted file mode 100644
index 6d05e9725..000000000
--- a/src/test/ui/borrowck/borrowck-mutate-in-guard.stderr
+++ /dev/null
@@ -1,20 +0,0 @@
-error[E0510]: cannot assign `x` in match guard
- --> $DIR/borrowck-mutate-in-guard.rs:10:25
- |
-LL | match x {
- | - value is immutable in match guard
-LL | Enum::A(_) if { x = Enum::B(false); false } => 1,
- | ^^^^^^^^^^^^^^^^^^ cannot assign
-
-error[E0510]: cannot mutably borrow `x` in match guard
- --> $DIR/borrowck-mutate-in-guard.rs:12:33
- |
-LL | match x {
- | - value is immutable in match guard
-...
-LL | Enum::A(_) if { let y = &mut x; *y = Enum::B(false); false } => 1,
- | ^^^^^^ cannot mutably borrow
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0510`.