rust/tests/ui/borrowck/borrow-immutable-upvar-mutation-impl-trait.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
509 B
Plaintext
Raw Normal View History

2020-02-14 16:39:55 -06:00
error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure
--> $DIR/borrow-immutable-upvar-mutation-impl-trait.rs:11:9
|
2022-06-27 00:45:35 -05:00
LL | fn bar() -> impl Fn() -> usize {
| --- ------------------ change this to return `FnMut` instead of `Fn`
LL | let mut x = 0;
LL | move || {
| ------- in this closure
LL | x += 1;
| ^^^^^^ cannot assign
2020-02-14 16:39:55 -06:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0594`.