@@ -625,7 +625,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
625
625
expr : & ' tcx hir:: Expr < ' tcx > ,
626
626
) -> Ty < ' tcx > {
627
627
let hint = expected. only_has_type ( self ) . map_or ( NoExpectation , |ty| {
628
- match ty . kind ( ) {
628
+ match self . try_structurally_resolve_type ( expr . span , ty ) . kind ( ) {
629
629
ty:: Ref ( _, ty, _) | ty:: RawPtr ( ty, _) => {
630
630
if oprnd. is_syntactic_place_expr ( ) {
631
631
// Places may legitimately have unsized types.
@@ -1290,7 +1290,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1290
1290
let cond_diverges = self . diverges . get ( ) ;
1291
1291
self . diverges . set ( Diverges :: Maybe ) ;
1292
1292
1293
- let expected = orig_expected. adjust_for_branches ( self , sp) ;
1293
+ let expected = orig_expected. try_structurally_resolve_and_adjust_for_branches ( self , sp) ;
1294
1294
let then_ty = self . check_expr_with_expectation ( then_expr, expected) ;
1295
1295
let then_diverges = self . diverges . get ( ) ;
1296
1296
self . diverges . set ( Diverges :: Maybe ) ;
@@ -1351,8 +1351,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1351
1351
rhs : & ' tcx hir:: Expr < ' tcx > ,
1352
1352
span : Span ,
1353
1353
) -> Ty < ' tcx > {
1354
- let expected_ty = expected. coercion_target_type ( self , expr . span ) ;
1355
- if expected_ty == self . tcx . types . bool {
1354
+ let expected_ty = expected. only_has_type ( self ) ;
1355
+ if expected_ty == Some ( self . tcx . types . bool ) {
1356
1356
let guar = self . expr_assign_expected_bool_error ( expr, lhs, rhs, span) ;
1357
1357
return Ty :: new_error ( self . tcx , guar) ;
1358
1358
}
@@ -1636,7 +1636,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1636
1636
let element_ty = if !args. is_empty ( ) {
1637
1637
let coerce_to = expected
1638
1638
. to_option ( self )
1639
- . and_then ( |uty| match * uty. kind ( ) {
1639
+ . and_then ( |uty| match * self . try_structurally_resolve_type ( expr . span , uty) . kind ( ) {
1640
1640
ty:: Array ( ty, _) | ty:: Slice ( ty) => Some ( ty) ,
1641
1641
_ => None ,
1642
1642
} )
0 commit comments