-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add by-value captured variable note on second use.
This commit adds a note that was present in the AST borrow checker when closures are invoked more than once and have captured variables by-value.
- Loading branch information
Showing
5 changed files
with
140 additions
and
47 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
error[E0382]: use of moved value: `f` | ||
--> $DIR/issue-12127.rs:21:9 | ||
| | ||
LL | f(); | ||
| - value moved here | ||
LL | f(); | ||
| ^ value used here after move | ||
| | ||
note: closure cannot be invoked more than once because it moves the variable `x` out of its environment | ||
--> $DIR/issue-12127.rs:18:39 | ||
| | ||
LL | let f = to_fn_once(move|| do_it(&*x)); | ||
| ^ | ||
= note: move occurs because `f` has type `[closure@$DIR/issue-12127.rs:18:24: 18:41 x:std::boxed::Box<isize>]`, which does not implement the `Copy` trait | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0382`. |
11 changes: 0 additions & 11 deletions
11
src/test/ui/unboxed-closures/unboxed-closures-infer-fnonce-call-twice.nll.stderr
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/test/ui/unboxed-closures/unboxed-closures-infer-fnonce-move-call-twice.nll.stderr
This file was deleted.
Oops, something went wrong.