@@ -13,7 +13,7 @@ use rustc_middle::mir::{
13
13
RetagKind , RuntimePhase , Rvalue , SourceScope , Statement , StatementKind , Terminator ,
14
14
TerminatorKind , UnOp , START_BLOCK ,
15
15
} ;
16
- use rustc_middle:: ty:: { self , InstanceDef , ParamEnv , Ty , TyCtxt } ;
16
+ use rustc_middle:: ty:: { self , InstanceDef , ParamEnv , Ty , TyCtxt , TypeVisitable } ;
17
17
use rustc_mir_dataflow:: impls:: MaybeStorageLive ;
18
18
use rustc_mir_dataflow:: storage:: always_storage_live_locals;
19
19
use rustc_mir_dataflow:: { Analysis , ResultsCursor } ;
@@ -231,6 +231,15 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
231
231
return true ;
232
232
}
233
233
234
+ // We sometimes have to use `defining_opaque_types` for subtyping
235
+ // to succeed here and figuring out how exactly that should work
236
+ // is annoying. It is harmless enough to just not validate anything
237
+ // in that case. We still check this after analysis as all opque
238
+ // types have been revealed at this point.
239
+ if ( src, dest) . has_opaque_types ( ) {
240
+ return true ;
241
+ }
242
+
234
243
crate :: util:: is_subtype ( self . tcx , self . param_env , src, dest)
235
244
}
236
245
}
0 commit comments