File tree 1 file changed +0
-4
lines changed
compiler/rustc_middle/src/ty
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ use std::iter;
3
3
pub use rustc_type_ir:: relate:: * ;
4
4
5
5
use crate :: ty:: error:: { ExpectedFound , TypeError } ;
6
- use crate :: ty:: predicate:: ExistentialPredicateStableCmpExt as _;
7
6
use crate :: ty:: { self as ty, Ty , TyCtxt } ;
8
7
9
8
pub type RelateResult < ' tcx , T > = rustc_type_ir:: relate:: RelateResult < TyCtxt < ' tcx > , T > ;
@@ -86,10 +85,7 @@ impl<'tcx> Relate<TyCtxt<'tcx>> for &'tcx ty::List<ty::PolyExistentialPredicate<
86
85
// in `a`.
87
86
let mut a_v: Vec < _ > = a. into_iter ( ) . collect ( ) ;
88
87
let mut b_v: Vec < _ > = b. into_iter ( ) . collect ( ) ;
89
- // `skip_binder` here is okay because `stable_cmp` doesn't look at binders
90
- a_v. sort_by ( |a, b| a. skip_binder ( ) . stable_cmp ( tcx, & b. skip_binder ( ) ) ) ;
91
88
a_v. dedup ( ) ;
92
- b_v. sort_by ( |a, b| a. skip_binder ( ) . stable_cmp ( tcx, & b. skip_binder ( ) ) ) ;
93
89
b_v. dedup ( ) ;
94
90
if a_v. len ( ) != b_v. len ( ) {
95
91
return Err ( TypeError :: ExistentialMismatch ( ExpectedFound :: new ( true , a, b) ) ) ;
You can’t perform that action at this time.
0 commit comments