Skip to content

Commit 11908bc

Browse files
committedNov 28, 2024
Structurally resolve before adjust_for_branches
1 parent c322cd5 commit 11908bc

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed
 

‎compiler/rustc_hir_typeck/src/_match.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
5757
// type in that case)
5858
let mut all_arms_diverge = Diverges::WarnedAlways;
5959

60-
let expected = orig_expected.adjust_for_branches(self);
60+
let expected = orig_expected.adjust_for_branches(self, expr.span);
6161
debug!(?expected);
6262

6363
let mut coercion = {

‎compiler/rustc_hir_typeck/src/expectation.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ impl<'a, 'tcx> Expectation<'tcx> {
3939
// an expected type. Otherwise, we might write parts of the type
4040
// when checking the 'then' block which are incompatible with the
4141
// 'else' branch.
42-
pub(super) fn adjust_for_branches(&self, fcx: &FnCtxt<'a, 'tcx>) -> Expectation<'tcx> {
42+
pub(super) fn adjust_for_branches(
43+
&self,
44+
fcx: &FnCtxt<'a, 'tcx>,
45+
span: Span,
46+
) -> Expectation<'tcx> {
4347
match *self {
4448
ExpectHasType(ety) => {
45-
let ety = fcx.shallow_resolve(ety);
49+
let ety = fcx.try_structurally_resolve_type(span, ety);
4650
if !ety.is_ty_var() { ExpectHasType(ety) } else { NoExpectation }
4751
}
4852
ExpectRvalueLikeUnsized(ety) => ExpectRvalueLikeUnsized(ety),

‎compiler/rustc_hir_typeck/src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
12901290
let cond_diverges = self.diverges.get();
12911291
self.diverges.set(Diverges::Maybe);
12921292

1293-
let expected = orig_expected.adjust_for_branches(self);
1293+
let expected = orig_expected.adjust_for_branches(self, sp);
12941294
let then_ty = self.check_expr_with_expectation(then_expr, expected);
12951295
let then_diverges = self.diverges.get();
12961296
self.diverges.set(Diverges::Maybe);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//@ compile-flags: -Znext-solver
2+
//@ check-pass
3+
4+
pub fn repro() -> impl FnMut() {
5+
if true { || () } else { || () }
6+
}
7+
8+
fn main() {}

0 commit comments

Comments
 (0)