@@ -5,11 +5,11 @@ use rustc_hir as hir;
5
5
use rustc_hir:: def:: DefKind ;
6
6
use rustc_hir:: def_id:: { DefId , LocalDefId } ;
7
7
use rustc_macros:: LintDiagnostic ;
8
+ use rustc_middle:: bug;
8
9
use rustc_middle:: middle:: resolve_bound_vars:: ResolvedArg ;
9
10
use rustc_middle:: ty:: {
10
11
self , Ty , TyCtxt , TypeSuperVisitable , TypeVisitable , TypeVisitableExt , TypeVisitor ,
11
12
} ;
12
- use rustc_middle:: { bug, span_bug} ;
13
13
use rustc_session:: { declare_lint, declare_lint_pass} ;
14
14
use rustc_span:: { sym, BytePos , Span } ;
15
15
@@ -303,20 +303,12 @@ impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for VisitOpaqueTypes<'tcx> {
303
303
ResolvedArg :: EarlyBound ( def_id) | ResolvedArg :: LateBound ( _, _, def_id) ,
304
304
) => {
305
305
if self . tcx . def_kind ( self . tcx . parent ( def_id) ) == DefKind :: OpaqueTy {
306
- let ( ty:: ReEarlyParam ( ty:: EarlyParamRegion { def_id, .. } )
307
- | ty:: ReLateParam ( ty:: LateParamRegion {
308
- bound_region : ty:: BoundRegionKind :: BrNamed ( def_id, _) ,
309
- ..
310
- } ) ) = self
306
+ let def_id = self
311
307
. tcx
312
308
. map_opaque_lifetime_to_parent_lifetime ( def_id. expect_local ( ) )
313
- . kind ( )
314
- else {
315
- span_bug ! (
316
- self . tcx. def_span( def_id) ,
317
- "variable should have been duplicated from a parent"
318
- ) ;
319
- } ;
309
+ . opt_param_def_id ( self . tcx , self . parent_def_id . to_def_id ( ) )
310
+ . expect ( "variable should have been duplicated from parent" ) ;
311
+
320
312
explicitly_captured. insert ( def_id) ;
321
313
} else {
322
314
explicitly_captured. insert ( def_id) ;
0 commit comments