@@ -32,8 +32,6 @@ use rustc_span::symbol::{kw, Ident};
32
32
use rustc_span:: { self , sym, Span } ;
33
33
use rustc_trait_selection:: traits:: { self , ObligationCauseCode , SelectionContext } ;
34
34
35
- use either:: Either ;
36
-
37
35
use std:: iter;
38
36
use std:: mem;
39
37
use std:: ops:: ControlFlow ;
@@ -1233,44 +1231,28 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1233
1231
) ;
1234
1232
return None ;
1235
1233
}
1236
- Res :: Def ( DefKind :: Variant , _) => match ( ty. raw . kind ( ) , ty. normalized . kind ( ) ) {
1237
- ( ty:: Adt ( adt, substs) , _) => {
1238
- Some ( ( adt. variant_of_res ( def) , adt. did ( ) , substs, Either :: Left ( substs) ) )
1239
- }
1240
- ( _, ty:: Adt ( adt, substs) ) => {
1241
- Some ( ( adt. variant_of_res ( def) , adt. did ( ) , substs, Either :: Right ( ty. raw ) ) )
1234
+ Res :: Def ( DefKind :: Variant , _) => match ty. normalized . ty_adt_def ( ) {
1235
+ Some ( adt) => {
1236
+ Some ( ( adt. variant_of_res ( def) , adt. did ( ) , Self :: user_substs_for_adt ( ty) ) )
1242
1237
}
1243
1238
_ => bug ! ( "unexpected type: {:?}" , ty. normalized) ,
1244
1239
} ,
1245
1240
Res :: Def ( DefKind :: Struct | DefKind :: Union | DefKind :: TyAlias | DefKind :: AssocTy , _)
1246
1241
| Res :: SelfTyParam { .. }
1247
- | Res :: SelfTyAlias { .. } => match ( ty. raw . kind ( ) , ty. normalized . kind ( ) ) {
1248
- ( ty:: Adt ( adt, substs) , _) if !adt. is_enum ( ) => {
1249
- Some ( ( adt. non_enum_variant ( ) , adt. did ( ) , substs, Either :: Left ( substs) ) )
1250
- }
1251
- ( _, ty:: Adt ( adt, substs) ) if !adt. is_enum ( ) => {
1252
- Some ( ( adt. non_enum_variant ( ) , adt. did ( ) , substs, Either :: Right ( ty. raw ) ) )
1242
+ | Res :: SelfTyAlias { .. } => match ty. normalized . ty_adt_def ( ) {
1243
+ Some ( adt) if !adt. is_enum ( ) => {
1244
+ Some ( ( adt. non_enum_variant ( ) , adt. did ( ) , Self :: user_substs_for_adt ( ty) ) )
1253
1245
}
1254
1246
_ => None ,
1255
1247
} ,
1256
1248
_ => bug ! ( "unexpected definition: {:?}" , def) ,
1257
1249
} ;
1258
1250
1259
- if let Some ( ( variant, did, substs, user_annotation ) ) = variant {
1251
+ if let Some ( ( variant, did, ty :: UserSubsts { substs, user_self_ty } ) ) = variant {
1260
1252
debug ! ( "check_struct_path: did={:?} substs={:?}" , did, substs) ;
1261
1253
1262
1254
// Register type annotation.
1263
- self . probe ( |_| {
1264
- // UserSubsts and UserSelfTy are mutually exclusive here.
1265
- let ( user_substs, self_ty) = match user_annotation {
1266
- Either :: Left ( substs) => ( * substs, None ) ,
1267
- Either :: Right ( self_ty) => {
1268
- ( self . fresh_substs_for_item ( path_span, did) , Some ( self_ty) )
1269
- }
1270
- } ;
1271
- let self_ty = self_ty. map ( |self_ty| ty:: UserSelfTy { impl_def_id : did, self_ty } ) ;
1272
- self . write_user_type_annotation_from_substs ( hir_id, did, user_substs, self_ty) ;
1273
- } ) ;
1255
+ self . write_user_type_annotation_from_substs ( hir_id, did, substs, user_self_ty) ;
1274
1256
1275
1257
// Check bounds on type arguments used in the path.
1276
1258
self . add_required_obligations_for_hir ( path_span, did, substs, hir_id) ;
0 commit comments