forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#106575 - estebank:issue-64008, r=pnkfelix
Suggest `move` in nested closure when appropriate Fix rust-lang#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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2043,6 +2043,28 @@ impl<'tcx> Ty<'tcx> { | |
cf.is_break() | ||
} | ||
|
||
/// Checks whether a type recursively contains any closure | ||
/// | ||
/// Example: `Option<[[email protected]:4:20]>` returns true | ||
pub fn contains_closure(self) -> bool { | ||
struct ContainsClosureVisitor; | ||
|
||
impl<'tcx> TypeVisitor<'tcx> for ContainsClosureVisitor { | ||
type BreakTy = (); | ||
|
||
fn visit_ty(&mut self, t: Ty<'tcx>) -> ControlFlow<Self::BreakTy> { | ||
if let ty::Closure(_, _) = t.kind() { | ||
ControlFlow::BREAK | ||
} else { | ||
t.super_visit_with(self) | ||
} | ||
} | ||
} | ||
|
||
let cf = self.visit_with(&mut ContainsClosureVisitor); | ||
cf.is_break() | ||
} | ||
|
||
/// Returns the type and mutability of `*ty`. | ||
/// | ||
/// The parameter `explicit` indicates if this is an *explicit* dereference. | ||
|
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