Skip to content

Commit 754a62c

Browse files
committed
Fix an ICE in conflict errors diagnostics
1 parent b29b56f commit 754a62c

File tree

3 files changed

+18
-315
lines changed

3 files changed

+18
-315
lines changed

compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> {
13591359
}
13601360

13611361
// Get closure's arguments
1362-
let ty::Closure(_, substs) = typeck_results.expr_ty(closure_expr).kind() else { unreachable!() };
1362+
let ty::Closure(_, substs) = typeck_results.expr_ty(closure_expr).kind() else { /* hir::Closure can be a generator too */ return };
13631363
let sig = substs.as_closure().sig();
13641364
let tupled_params =
13651365
tcx.erase_late_bound_regions(sig.inputs().iter().next().unwrap().map_bound(|&b| b));
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// edition:2021
22
// compile-flags: -Zdrop-tracking-mir=yes
3-
// failure-status: 101
43
#![feature(generators)]
54

65
fn main() {
76
let x = &mut ();
87
|| {
98
let _c = || yield *&mut *x;
109
|| _ = &mut *x;
10+
//~^ cannot borrow `*x` as mutable more than once at a time
1111
};
1212
}

0 commit comments

Comments
 (0)