summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-27282-move-match-input-into-guard.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/nll/issue-27282-move-match-input-into-guard.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/nll/issue-27282-move-match-input-into-guard.stderr b/src/test/ui/nll/issue-27282-move-match-input-into-guard.stderr
deleted file mode 100644
index 9be1a9279..000000000
--- a/src/test/ui/nll/issue-27282-move-match-input-into-guard.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0382]: use of moved value: `b`
- --> $DIR/issue-27282-move-match-input-into-guard.rs:12:5
- |
-LL | let b = &mut true;
- | - move occurs because `b` has type `&mut bool`, which does not implement the `Copy` trait
-LL | match b {
- | ^^^^^^^ value used here after move
-...
-LL | _ if { (|| { let bar = b; *bar = false; })();
- | -- - variable moved due to use in closure
- | |
- | value moved into closure here
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0382`.