Skip to content

Commit 8e43695

Browse files
authored
Unrolled build for rust-lang#123701
Rollup merge of rust-lang#123701 - compiler-errors:only-assert-after-checking, r=WaffleLapkin Only assert for child/parent projection compatibility AFTER checking that theyre coming from the same place This assertion doesn't make sense until we check that these captures are actually equivalent. Fixes rust-lang#123697 <sub>Some days I wonder how I even write code that works...</sub>
2 parents e908cfd + 69b690f commit 8e43695

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

compiler/rustc_mir_transform/src/coroutine/by_move_body.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,14 @@ impl<'tcx> MirPass<'tcx> for ByMoveBody {
154154
}) {
155155
let (child_field_idx, child_capture) = child_captures.next().unwrap();
156156

157+
// This analysis only makes sense if the parent capture is a
158+
// prefix of the child capture.
159+
assert!(
160+
child_capture.place.projections.len() >= parent_capture.place.projections.len(),
161+
"parent capture ({parent_capture:#?}) expected to be prefix of \
162+
child capture ({child_capture:#?})"
163+
);
164+
157165
// Store this set of additional projections (fields and derefs).
158166
// We need to re-apply them later.
159167
let child_precise_captures =
@@ -244,7 +252,6 @@ fn child_prefix_matches_parent_projections(
244252
bug!("expected capture to be an upvar");
245253
};
246254

247-
assert!(child_capture.place.projections.len() >= parent_capture.place.projections.len());
248255
parent_base.var_path.hir_id == child_base.var_path.hir_id
249256
&& std::iter::zip(&child_capture.place.projections, &parent_capture.place.projections)
250257
.all(|(child, parent)| child.kind == parent.kind)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//@ check-pass
2+
//@ edition: 2021
3+
// issue: rust-lang/rust#123697
4+
5+
#![feature(async_closure)]
6+
7+
struct S { t: i32 }
8+
9+
fn test(s: &S, t: &i32) {
10+
async || {
11+
println!("{}", s.t);
12+
println!("{}", t);
13+
};
14+
}
15+
16+
fn main() {}

0 commit comments

Comments
 (0)