@@ -1883,7 +1883,7 @@ impl<'tcx> SelectionContext<'_, 'tcx> {
1883
1883
| BuiltinCandidate { .. }
1884
1884
| TraitAliasCandidate
1885
1885
| ObjectCandidate ( _)
1886
- | ProjectionCandidate ( .. ) ,
1886
+ | ProjectionCandidate ( _ ) ,
1887
1887
) => {
1888
1888
// We have a where clause so don't go around looking
1889
1889
// for impls. Arbitrarily give param candidates priority
@@ -1893,7 +1893,7 @@ impl<'tcx> SelectionContext<'_, 'tcx> {
1893
1893
// here (see issue #50825).
1894
1894
DropVictim :: drop_if ( !is_global ( other_cand) )
1895
1895
}
1896
- ( ObjectCandidate ( _) | ProjectionCandidate ( .. ) , ParamCandidate ( ref victim_cand) ) => {
1896
+ ( ObjectCandidate ( _) | ProjectionCandidate ( _ ) , ParamCandidate ( ref victim_cand) ) => {
1897
1897
// Prefer these to a global where-clause bound
1898
1898
// (see issue #50825).
1899
1899
if is_global ( victim_cand) { DropVictim :: Yes } else { DropVictim :: No }
@@ -1921,20 +1921,20 @@ impl<'tcx> SelectionContext<'_, 'tcx> {
1921
1921
)
1922
1922
}
1923
1923
1924
- ( ProjectionCandidate ( i, _ ) , ProjectionCandidate ( j, _ ) )
1924
+ ( ProjectionCandidate ( i) , ProjectionCandidate ( j) )
1925
1925
| ( ObjectCandidate ( i) , ObjectCandidate ( j) ) => {
1926
1926
// Arbitrarily pick the lower numbered candidate for backwards
1927
1927
// compatibility reasons. Don't let this affect inference.
1928
1928
DropVictim :: drop_if ( i < j && !has_non_region_infer)
1929
1929
}
1930
- ( ObjectCandidate ( _) , ProjectionCandidate ( .. ) )
1931
- | ( ProjectionCandidate ( .. ) , ObjectCandidate ( _) ) => {
1930
+ ( ObjectCandidate ( _) , ProjectionCandidate ( _ ) )
1931
+ | ( ProjectionCandidate ( _ ) , ObjectCandidate ( _) ) => {
1932
1932
bug ! ( "Have both object and projection candidate" )
1933
1933
}
1934
1934
1935
1935
// Arbitrarily give projection and object candidates priority.
1936
1936
(
1937
- ObjectCandidate ( _) | ProjectionCandidate ( .. ) ,
1937
+ ObjectCandidate ( _) | ProjectionCandidate ( _ ) ,
1938
1938
ImplCandidate ( ..)
1939
1939
| AutoImplCandidate
1940
1940
| ClosureCandidate { .. }
@@ -1964,7 +1964,7 @@ impl<'tcx> SelectionContext<'_, 'tcx> {
1964
1964
| TraitUpcastingUnsizeCandidate ( _)
1965
1965
| BuiltinCandidate { .. }
1966
1966
| TraitAliasCandidate ,
1967
- ObjectCandidate ( _) | ProjectionCandidate ( .. ) ,
1967
+ ObjectCandidate ( _) | ProjectionCandidate ( _ ) ,
1968
1968
) => DropVictim :: No ,
1969
1969
1970
1970
( & ImplCandidate ( other_def) , & ImplCandidate ( victim_def) ) => {
0 commit comments