blob: f7c742d33fda9a5401515bfbc875ba7328a89c38 [file] [log] [blame]
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`.