about summary refs log tree commit diff
path: root/tests/ui/ergonomic-clones/closure/immutable-outer-variable.stderr
blob: f7c742d33fda9a5401515bfbc875ba7328a89c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0594]: cannot assign to `y`, as it is not declared as mutable
  --> $DIR/immutable-outer-variable.rs:14:25
   |
LL |     foo(Box::new(use || y = !y) as Box<_>);
   |                         ^^^^^^ cannot assign
   |
help: consider changing this to be mutable
   |
LL |     let mut y = true;
   |         +++

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0594`.