-
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.
Suggest
move
in nested closure when appropriate
Fix #64008.
- Loading branch information
Showing
5 changed files
with
98 additions
and
21 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
26 changes: 26 additions & 0 deletions
26
tests/ui/borrowck/issue-95079-missing-move-in-nested-closure.fixed
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,26 @@ | ||
// run-rustfix | ||
#![allow(dead_code, path_statements)] | ||
fn foo1(s: &str) -> impl Iterator<Item = String> + '_ { | ||
None.into_iter() | ||
.flat_map(move |()| s.chars().map(move |c| format!("{}{}", c, s))) | ||
//~^ ERROR captured variable cannot escape `FnMut` closure body | ||
//~| HELP consider adding 'move' keyword before the nested closure | ||
} | ||
|
||
fn foo2(s: &str) -> impl Sized + '_ { | ||
move |()| s.chars().map(move |c| format!("{}{}", c, s)) | ||
//~^ ERROR lifetime may not live long enough | ||
//~| HELP consider adding 'move' keyword before the nested closure | ||
} | ||
|
||
pub struct X; | ||
pub fn foo3<'a>( | ||
bar: &'a X, | ||
) -> impl Iterator<Item = ()> + 'a { | ||
Some(()).iter().flat_map(move |()| { | ||
Some(()).iter().map(move |()| { bar; }) //~ ERROR captured variable cannot escape | ||
//~^ HELP consider adding 'move' keyword before the nested closure | ||
}) | ||
} | ||
|
||
fn main() {} |
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