@@ -260,13 +260,22 @@ fn visit_implementation_of_dispatch_from_dyn(checker: &Checker<'_>) -> Result<()
260
260
. iter ( )
261
261
. filter ( |field| {
262
262
// Ignore PhantomData fields
263
- if tcx. type_of ( field. did ) . instantiate_identity ( ) . is_phantom_data ( ) {
263
+ let unnormalized_ty = tcx. type_of ( field. did ) . instantiate_identity ( ) ;
264
+ if tcx
265
+ . try_normalize_erasing_regions (
266
+ ty:: TypingEnv :: non_body_analysis ( tcx, def_a. did ( ) ) ,
267
+ unnormalized_ty,
268
+ )
269
+ . unwrap_or ( unnormalized_ty)
270
+ . is_phantom_data ( )
271
+ {
264
272
return false ;
265
273
}
266
274
267
275
let ty_a = field. ty ( tcx, args_a) ;
268
276
let ty_b = field. ty ( tcx, args_b) ;
269
277
278
+ // FIXME: We could do normalization here, but is it really worth it?
270
279
if ty_a == ty_b {
271
280
// Allow 1-ZSTs that don't mention type params.
272
281
//
@@ -469,8 +478,16 @@ pub(crate) fn coerce_unsized_info<'tcx>(
469
478
. filter_map ( |( i, f) | {
470
479
let ( a, b) = ( f. ty ( tcx, args_a) , f. ty ( tcx, args_b) ) ;
471
480
472
- if tcx. type_of ( f. did ) . instantiate_identity ( ) . is_phantom_data ( ) {
473
- // Ignore PhantomData fields
481
+ // Ignore PhantomData fields
482
+ let unnormalized_ty = tcx. type_of ( f. did ) . instantiate_identity ( ) ;
483
+ if tcx
484
+ . try_normalize_erasing_regions (
485
+ ty:: TypingEnv :: non_body_analysis ( tcx, def_a. did ( ) ) ,
486
+ unnormalized_ty,
487
+ )
488
+ . unwrap_or ( unnormalized_ty)
489
+ . is_phantom_data ( )
490
+ {
474
491
return None ;
475
492
}
476
493
0 commit comments