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, 15 insertions, 0 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
new file mode 100644
index 000000000..5e427a1fc
--- /dev/null
+++ b/src/test/ui/moves/issue-75904-move-closure-loop.stderr
@@ -0,0 +1,15 @@
+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`.