summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/closure-immutable-outer-variable.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/closures/closure-immutable-outer-variable.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/closures/closure-immutable-outer-variable.stderr')
-rw-r--r--tests/ui/closures/closure-immutable-outer-variable.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/closures/closure-immutable-outer-variable.stderr b/tests/ui/closures/closure-immutable-outer-variable.stderr
new file mode 100644
index 000000000..799097889
--- /dev/null
+++ b/tests/ui/closures/closure-immutable-outer-variable.stderr
@@ -0,0 +1,11 @@
+error[E0594]: cannot assign to `y`, as it is not declared as mutable
+ --> $DIR/closure-immutable-outer-variable.rs:11:26
+ |
+LL | let y = true;
+ | - help: consider changing this to be mutable: `mut y`
+LL | foo(Box::new(move || y = !y) as Box<_>);
+ | ^^^^^^ cannot assign
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0594`.