File tree 2 files changed +15
-5
lines changed
rustc_trait_selection/src/traits
2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -1837,6 +1837,15 @@ impl<'tcx> TyS<'tcx> {
1837
1837
)
1838
1838
}
1839
1839
1840
+ /// Get the mutability of the reference or `None` when not a reference
1841
+ #[ inline]
1842
+ pub fn ref_mutability ( & self ) -> Option < hir:: Mutability > {
1843
+ match self . kind ( ) {
1844
+ Ref ( _, _, mutability) => Some ( * mutability) ,
1845
+ _ => None ,
1846
+ }
1847
+ }
1848
+
1840
1849
#[ inline]
1841
1850
pub fn is_unsafe_ptr ( & self ) -> bool {
1842
1851
matches ! ( self . kind( ) , RawPtr ( _) )
Original file line number Diff line number Diff line change @@ -75,18 +75,19 @@ where
75
75
let impl1_ref = tcx. impl_trait_ref ( impl1_def_id) ;
76
76
let impl2_ref = tcx. impl_trait_ref ( impl2_def_id) ;
77
77
78
- // Check if any of the input types definitely mismatch .
78
+ // Check if any of the input types definitely do not unify .
79
79
if impl1_ref
80
80
. iter ( )
81
81
. flat_map ( |tref| tref. substs . types ( ) )
82
82
. zip ( impl2_ref. iter ( ) . flat_map ( |tref| tref. substs . types ( ) ) )
83
83
. chain ( iter:: once ( ( impl1_self, impl2_self) ) )
84
84
. any ( |( ty1, ty2) | {
85
- let ty1 = fast_reject:: simplify_type ( tcx, ty1, false ) ;
86
- let ty2 = fast_reject:: simplify_type ( tcx, ty2, false ) ;
87
- if let ( Some ( ty1 ) , Some ( ty2 ) ) = ( ty1 , ty2 ) {
85
+ let t1 = fast_reject:: simplify_type ( tcx, ty1, false ) ;
86
+ let t2 = fast_reject:: simplify_type ( tcx, ty2, false ) ;
87
+ if let ( Some ( t1 ) , Some ( t2 ) ) = ( t1 , t2 ) {
88
88
// Simplified successfully
89
- ty1 != ty2
89
+ // Types cannot unify if they differ in their reference mutability or simplify to different types
90
+ ty1. ref_mutability ( ) != ty2. ref_mutability ( ) || t1 != t2
90
91
} else {
91
92
// Types might unify
92
93
false
You can’t perform that action at this time.
0 commit comments