-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Tweak borrow error on FnMut
when Fn
is expected
#68816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,101 @@ | ||
error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:15:27 | ||
| | ||
LL | fn to_fn<A,F:Fn<A>>(f: F) -> F { f } | ||
| - change this to accept `FnMut` instead of `Fn` | ||
... | ||
LL | let _f = to_fn(|| x = 42); | ||
| ^^^^^^ cannot assign | ||
| | ||
help: consider changing this to accept closures that implement `FnMut` | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:15:24 | ||
| | ||
LL | let _f = to_fn(|| x = 42); | ||
| ^^^^^^^^^ | ||
| ----- ^^^^^^ cannot assign | ||
| | | ||
| expects `Fn` instead of `FnMut` | ||
|
||
error[E0596]: cannot borrow `y` as mutable, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:18:31 | ||
| | ||
LL | fn to_fn<A,F:Fn<A>>(f: F) -> F { f } | ||
| - change this to accept `FnMut` instead of `Fn` | ||
... | ||
LL | let _g = to_fn(|| set(&mut y)); | ||
| ^^^^^^ cannot borrow as mutable | ||
| | ||
help: consider changing this to accept closures that implement `FnMut` | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:18:24 | ||
| | ||
LL | let _g = to_fn(|| set(&mut y)); | ||
| ^^^^^^^^^^^^^^ | ||
| ----- ^^^^^^ cannot borrow as mutable | ||
| | | ||
| expects `Fn` instead of `FnMut` | ||
|
||
error[E0594]: cannot assign to `z`, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:21:55 | ||
| | ||
LL | let _h = to_fn_mut(|| { set(&mut z); to_fn(|| z = 42); }); | ||
| ^^^^^^ cannot assign | ||
| | ||
help: consider changing this to accept closures that implement `FnMut` | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:21:52 | ||
| | ||
LL | let _h = to_fn_mut(|| { set(&mut z); to_fn(|| z = 42); }); | ||
| ^^^^^^^^^ | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:23:22 | ||
| | ||
LL | fn to_fn<A,F:Fn<A>>(f: F) -> F { f } | ||
| - change this to accept `FnMut` instead of `Fn` | ||
... | ||
LL | to_fn(|| z = 42); | ||
| ----- ^^^^^^ cannot assign | ||
| | | ||
| expects `Fn` instead of `FnMut` | ||
|
||
error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:27:32 | ||
| | ||
LL | let _f = to_fn(move || x = 42); | ||
| ^^^^^^ cannot assign | ||
| | ||
help: consider changing this to accept closures that implement `FnMut` | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:27:24 | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:30:32 | ||
| | ||
LL | fn to_fn<A,F:Fn<A>>(f: F) -> F { f } | ||
| - change this to accept `FnMut` instead of `Fn` | ||
... | ||
LL | let _f = to_fn(move || x = 42); | ||
| ^^^^^^^^^^^^^^ | ||
| ----- ^^^^^^ cannot assign | ||
| | | ||
| expects `Fn` instead of `FnMut` | ||
|
||
error[E0596]: cannot borrow `y` as mutable, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:30:36 | ||
| | ||
LL | let _g = to_fn(move || set(&mut y)); | ||
| ^^^^^^ cannot borrow as mutable | ||
| | ||
help: consider changing this to accept closures that implement `FnMut` | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:30:24 | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:33:36 | ||
| | ||
LL | fn to_fn<A,F:Fn<A>>(f: F) -> F { f } | ||
| - change this to accept `FnMut` instead of `Fn` | ||
... | ||
LL | let _g = to_fn(move || set(&mut y)); | ||
| ^^^^^^^^^^^^^^^^^^^ | ||
| ----- ^^^^^^ cannot borrow as mutable | ||
| | | ||
| expects `Fn` instead of `FnMut` | ||
|
||
error[E0594]: cannot assign to `z`, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:33:65 | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:36:65 | ||
| | ||
LL | fn to_fn<A,F:Fn<A>>(f: F) -> F { f } | ||
| - change this to accept `FnMut` instead of `Fn` | ||
... | ||
LL | let _h = to_fn_mut(move || { set(&mut z); to_fn(move || z = 42); }); | ||
| ^^^^^^ cannot assign | ||
| | ||
help: consider changing this to accept closures that implement `FnMut` | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:33:57 | ||
| | ||
LL | let _h = to_fn_mut(move || { set(&mut z); to_fn(move || z = 42); }); | ||
| ^^^^^^^^^^^^^^ | ||
| ----- ^^^^^^ cannot assign | ||
| | | ||
| expects `Fn` instead of `FnMut` | ||
|
||
error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:43:9 | ||
| | ||
LL | fn foo() -> Box<dyn Fn() -> usize> { | ||
| --- ---------------------- ...to return `FnMut` instead of `Fn` | ||
| | | ||
| you might have to change this... | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The order of this message seems reversed with the message above. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The actual text is fine — I'm just inclined to read the topmost line first:
when it's intended to be read in the opposite order. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I kept the span for the method ident with no label and shortened the wording to |
||
LL | let mut x = 0; | ||
LL | Box::new(move || { | ||
| ______________- | ||
LL | | x += 1; | ||
| | ^^^^^^ cannot assign | ||
LL | | x | ||
LL | | }) | ||
| |_____- in this closure | ||
|
||
error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure | ||
--> $DIR/borrow-immutable-upvar-mutation.rs:51:9 | ||
| | ||
LL | fn bar() -> impl Fn() -> usize { | ||
| --- ------------------ ...to return `FnMut` instead of `Fn` | ||
| | | ||
| you might have to change this... | ||
LL | let mut x = 0; | ||
LL | / move || { | ||
LL | | x += 1; | ||
| | ^^^^^^ cannot assign | ||
LL | | x | ||
LL | | } | ||
| |_____- in this closure | ||
|
||
error: aborting due to 6 previous errors | ||
error: aborting due to 8 previous errors | ||
|
||
Some errors have detailed explanations: E0594, E0596. | ||
For more information about an error, try `rustc --explain E0594`. |
Uh oh!
There was an error while loading. Please reload this page.