summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/issue-75904-move-closure-loop.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/moves/issue-75904-move-closure-loop.stderr')
-rw-r--r--src/test/ui/moves/issue-75904-move-closure-loop.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/moves/issue-75904-move-closure-loop.stderr b/src/test/ui/moves/issue-75904-move-closure-loop.stderr
deleted file mode 100644
index 5e427a1fc..000000000
--- a/src/test/ui/moves/issue-75904-move-closure-loop.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0382]: use of moved value: `a`
- --> $DIR/issue-75904-move-closure-loop.rs:10:9
- |
-LL | let mut a = NotCopy;
- | ----- move occurs because `a` has type `NotCopy`, which does not implement the `Copy` trait
-LL | loop {
-LL | || {
- | ^^ value moved into closure here, in previous iteration of loop
-LL | &mut a;
-LL | a;
- | - use occurs due to use in closure
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0382`.