Skip to content

Commit 1bafe0b

Browse files
authored
Rollup merge of rust-lang#101285 - TaKO8Ki:do-not-suggest-adding-move-when-closure-is-already-marked-as-move, r=oli-obk
Do not suggest adding `move` to closure when `move` is already used Fixes rust-lang#101227
2 parents 8f8a5d2 + 78e9bea commit 1bafe0b

3 files changed

+37
-3
lines changed

compiler/rustc_borrowck/src/diagnostics/region_errors.rs

+11-3
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,11 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
902902
hir::ExprKind::MethodCall(.., args, _) => {
903903
// only the first closre parameter of the method. args[0] is MethodCall PathSegment
904904
for i in 1..args.len() {
905-
if let hir::ExprKind::Closure(..) = args[i].kind {
905+
if let hir::ExprKind::Closure(hir::Closure {
906+
capture_clause: hir::CaptureBy::Ref,
907+
..
908+
}) = args[i].kind
909+
{
906910
closure_span = Some(args[i].span.shrink_to_lo());
907911
break;
908912
}
@@ -911,7 +915,11 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
911915
hir::ExprKind::Block(blk, _) => {
912916
if let Some(ref expr) = blk.expr {
913917
// only when the block is a closure
914-
if let hir::ExprKind::Closure(..) = expr.kind {
918+
if let hir::ExprKind::Closure(hir::Closure {
919+
capture_clause: hir::CaptureBy::Ref,
920+
..
921+
}) = expr.kind
922+
{
915923
closure_span = Some(expr.span.shrink_to_lo());
916924
}
917925
}
@@ -921,7 +929,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
921929
if let Some(closure_span) = closure_span {
922930
diag.span_suggestion_verbose(
923931
closure_span,
924-
format!("consider adding 'move' keyword before the nested closure"),
932+
"consider adding 'move' keyword before the nested closure",
925933
"move ",
926934
Applicability::MaybeIncorrect,
927935
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
fn main() {
2+
let mut vec: Vec<i32> = Vec::new();
3+
let closure = move || {
4+
vec.clear();
5+
let mut iter = vec.iter();
6+
move || { iter.next() } //~ ERROR captured variable cannot escape `FnMut` closure bod
7+
};
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error: captured variable cannot escape `FnMut` closure body
2+
--> $DIR/do-not-suggest-adding-move-when-closure-is-already-marked-as-move.rs:6:9
3+
|
4+
LL | let mut vec: Vec<i32> = Vec::new();
5+
| ------- variable defined here
6+
LL | let closure = move || {
7+
| - inferred to be a `FnMut` closure
8+
LL | vec.clear();
9+
| --- variable captured here
10+
LL | let mut iter = vec.iter();
11+
LL | move || { iter.next() }
12+
| ^^^^^^^^^^^^^^^^^^^^^^^ returns a closure that contains a reference to a captured variable, which then escapes the closure body
13+
|
14+
= note: `FnMut` closures only have access to their captured variables while they are executing...
15+
= note: ...therefore, they cannot allow references to captured variables to escape
16+
17+
error: aborting due to previous error
18+

0 commit comments

Comments
 (0)