@@ -348,6 +348,7 @@ struct Candidate {
348
348
pub enum RcvrMatchCondition {
349
349
RcvrMatchesIfObject ( ast:: DefId ) ,
350
350
RcvrMatchesIfSubtype ( ty:: t ) ,
351
+ RcvrMatchesIfEqtype ( ty:: t )
351
352
}
352
353
353
354
impl < ' a , ' tcx > LookupContext < ' a , ' tcx > {
@@ -675,6 +676,14 @@ impl<'a, 'tcx> LookupContext<'a, 'tcx> {
675
676
}
676
677
_ => { }
677
678
}
679
+
680
+ let condition = match m. explicit_self {
681
+ ByReferenceExplicitSelfCategory ( _, mt) if mt == MutMutable =>
682
+ RcvrMatchesIfEqtype ( self_ty) ,
683
+ _ =>
684
+ RcvrMatchesIfSubtype ( self_ty)
685
+ } ;
686
+
678
687
debug ! ( "found match: trait_ref={} substs={} m={}" ,
679
688
trait_ref. repr( this. tcx( ) ) ,
680
689
trait_ref. substs. repr( this. tcx( ) ) ,
@@ -688,7 +697,7 @@ impl<'a, 'tcx> LookupContext<'a, 'tcx> {
688
697
assert_eq ! ( m. generics. regions. get_slice( subst:: SelfSpace ) . len( ) ,
689
698
trait_ref. substs. regions( ) . get_slice( subst:: SelfSpace ) . len( ) ) ;
690
699
Some ( Candidate {
691
- rcvr_match_condition : RcvrMatchesIfSubtype ( self_ty ) ,
700
+ rcvr_match_condition : condition ,
692
701
rcvr_substs : trait_ref. substs . clone ( ) ,
693
702
method_ty : m,
694
703
origin : MethodParam ( MethodParam {
@@ -822,14 +831,21 @@ impl<'a, 'tcx> LookupContext<'a, 'tcx> {
822
831
ty : impl_ty
823
832
} = impl_self_ty ( & vcx, span, impl_did) ;
824
833
834
+ let condition = match method. explicit_self {
835
+ ByReferenceExplicitSelfCategory ( _, mt) if mt == MutMutable =>
836
+ RcvrMatchesIfEqtype ( impl_ty) ,
837
+ _ =>
838
+ RcvrMatchesIfSubtype ( impl_ty)
839
+ } ;
840
+
825
841
let candidates = if is_extension {
826
842
& mut self . extension_candidates
827
843
} else {
828
844
& mut self . inherent_candidates
829
845
} ;
830
846
831
847
candidates. push ( Candidate {
832
- rcvr_match_condition : RcvrMatchesIfSubtype ( impl_ty ) ,
848
+ rcvr_match_condition : condition ,
833
849
rcvr_substs : impl_substs,
834
850
origin : MethodStatic ( method. def_id ) ,
835
851
method_ty : method,
@@ -1525,7 +1541,7 @@ impl<'a, 'tcx> LookupContext<'a, 'tcx> {
1525
1541
RcvrMatchesIfObject ( desired_did) => {
1526
1542
self_did == desired_did
1527
1543
}
1528
- RcvrMatchesIfSubtype ( _) => {
1544
+ RcvrMatchesIfSubtype ( _) | RcvrMatchesIfEqtype ( _ ) => {
1529
1545
false
1530
1546
}
1531
1547
}
@@ -1541,6 +1557,9 @@ impl<'a, 'tcx> LookupContext<'a, 'tcx> {
1541
1557
RcvrMatchesIfSubtype ( of_type) => {
1542
1558
fcx. can_mk_subty ( rcvr_ty, of_type) . is_ok ( )
1543
1559
}
1560
+ RcvrMatchesIfEqtype ( of_type) => {
1561
+ fcx. can_mk_eqty ( rcvr_ty, of_type) . is_ok ( )
1562
+ }
1544
1563
}
1545
1564
}
1546
1565
@@ -1656,9 +1675,9 @@ impl Repr for RcvrMatchCondition {
1656
1675
RcvrMatchesIfSubtype ( t) => {
1657
1676
format ! ( "RcvrMatchesIfSubtype({})" , t. repr( tcx) )
1658
1677
}
1678
+ RcvrMatchesIfEqtype ( t) => {
1679
+ format ! ( "RcvrMatchesIfEqtype({})" , t. repr( tcx) )
1680
+ }
1659
1681
}
1660
1682
}
1661
1683
}
1662
-
1663
-
1664
-
0 commit comments