@@ -50,8 +50,6 @@ use rustc_span::{Span, DUMMY_SP};
50
50
use rustc_target:: spec:: abi;
51
51
use rustc_trait_selection:: traits:: error_reporting:: suggestions:: NextTypeParamName ;
52
52
53
- use std:: ops:: ControlFlow ;
54
-
55
53
mod item_bounds;
56
54
mod type_of;
57
55
@@ -2080,38 +2078,6 @@ fn const_evaluatable_predicates_of<'tcx>(
2080
2078
) ) ;
2081
2079
}
2082
2080
}
2083
-
2084
- // Look into `TyAlias`.
2085
- fn visit_ty ( & mut self , ty : & ' tcx hir:: Ty < ' tcx > ) {
2086
- use ty:: fold:: { TypeFoldable , TypeVisitor } ;
2087
- struct TyAliasVisitor < ' a , ' tcx > {
2088
- tcx : TyCtxt < ' tcx > ,
2089
- preds : & ' a mut FxIndexSet < ( ty:: Predicate < ' tcx > , Span ) > ,
2090
- span : Span ,
2091
- }
2092
-
2093
- impl < ' a , ' tcx > TypeVisitor < ' tcx > for TyAliasVisitor < ' a , ' tcx > {
2094
- fn visit_const ( & mut self , ct : & ' tcx Const < ' tcx > ) -> ControlFlow < Self :: BreakTy > {
2095
- if let ty:: ConstKind :: Unevaluated ( def, substs, None ) = ct. val {
2096
- self . preds . insert ( (
2097
- ty:: PredicateKind :: ConstEvaluatable ( def, substs) . to_predicate ( self . tcx ) ,
2098
- self . span ,
2099
- ) ) ;
2100
- }
2101
- ControlFlow :: CONTINUE
2102
- }
2103
- }
2104
-
2105
- if let hir:: TyKind :: Path ( hir:: QPath :: Resolved ( None , path) ) = ty. kind {
2106
- if let Res :: Def ( DefKind :: TyAlias , def_id) = path. res {
2107
- let mut visitor =
2108
- TyAliasVisitor { tcx : self . tcx , preds : & mut self . preds , span : path. span } ;
2109
- self . tcx . type_of ( def_id) . visit_with ( & mut visitor) ;
2110
- }
2111
- }
2112
-
2113
- intravisit:: walk_ty ( self , ty)
2114
- }
2115
2081
}
2116
2082
2117
2083
let hir_id = tcx. hir ( ) . local_def_id_to_hir_id ( def_id) ;
0 commit comments