-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak borrow error on
FnMut
when Fn
is expected
- Loading branch information
Showing
11 changed files
with
370 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 changes: 74 additions & 49 deletions
123
src/test/ui/borrowck/borrow-immutable-upvar-mutation.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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... | ||
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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.