@@ -30,7 +30,6 @@ use rustc_trait_selection::traits::misc::{
30
30
ConstParamTyImplementationError , type_allowed_to_implement_const_param_ty,
31
31
} ;
32
32
use rustc_trait_selection:: traits:: outlives_bounds:: InferCtxtExt as _;
33
- use rustc_trait_selection:: traits:: query:: evaluate_obligation:: InferCtxtExt as _;
34
33
use rustc_trait_selection:: traits:: {
35
34
self , FulfillmentError , Obligation , ObligationCause , ObligationCauseCode , ObligationCtxt ,
36
35
WellFormedLoc ,
@@ -1642,13 +1641,6 @@ fn check_fn_or_method<'tcx>(
1642
1641
}
1643
1642
}
1644
1643
1645
- /// The `arbitrary_self_types_pointers` feature implies `arbitrary_self_types`.
1646
- #[ derive( Clone , Copy , PartialEq ) ]
1647
- enum ArbitrarySelfTypesLevel {
1648
- Basic , // just arbitrary_self_types
1649
- WithPointers , // both arbitrary_self_types and arbitrary_self_types_pointers
1650
- }
1651
-
1652
1644
#[ instrument( level = "debug" , skip( wfcx) ) ]
1653
1645
fn check_method_receiver < ' tcx > (
1654
1646
wfcx : & WfCheckingCtxt < ' _ , ' tcx > ,
@@ -1681,55 +1673,21 @@ fn check_method_receiver<'tcx>(
1681
1673
return Ok ( ( ) ) ;
1682
1674
}
1683
1675
1684
- let arbitrary_self_types_level = if tcx. features ( ) . arbitrary_self_types_pointers ( ) {
1685
- Some ( ArbitrarySelfTypesLevel :: WithPointers )
1686
- } else if tcx. features ( ) . arbitrary_self_types ( ) {
1687
- Some ( ArbitrarySelfTypesLevel :: Basic )
1688
- } else {
1689
- None
1690
- } ;
1691
1676
let generics = tcx. generics_of ( method. def_id ) ;
1692
1677
1693
- let receiver_validity =
1694
- receiver_is_valid ( wfcx, span, receiver_ty, self_ty, arbitrary_self_types_level, generics) ;
1678
+ let arbitrary_self_types_pointers_enabled = tcx. features ( ) . arbitrary_self_types_pointers ( ) ;
1679
+ let receiver_validity = receiver_is_valid (
1680
+ wfcx,
1681
+ span,
1682
+ receiver_ty,
1683
+ self_ty,
1684
+ arbitrary_self_types_pointers_enabled,
1685
+ generics,
1686
+ ) ;
1695
1687
if let Err ( receiver_validity_err) = receiver_validity {
1696
- return Err ( match arbitrary_self_types_level {
1697
- // Wherever possible, emit a message advising folks that the features
1698
- // `arbitrary_self_types` or `arbitrary_self_types_pointers` might
1699
- // have helped.
1700
- None if receiver_is_valid (
1701
- wfcx,
1702
- span,
1703
- receiver_ty,
1704
- self_ty,
1705
- Some ( ArbitrarySelfTypesLevel :: Basic ) ,
1706
- generics,
1707
- )
1708
- . is_ok ( ) =>
1709
- {
1710
- // Report error; would have worked with `arbitrary_self_types`.
1711
- feature_err (
1712
- & tcx. sess ,
1713
- sym:: arbitrary_self_types,
1714
- span,
1715
- format ! (
1716
- "`{receiver_ty}` cannot be used as the type of `self` without \
1717
- the `arbitrary_self_types` feature",
1718
- ) ,
1719
- )
1720
- . with_help ( fluent:: hir_analysis_invalid_receiver_ty_help)
1721
- . emit ( )
1722
- }
1723
- None | Some ( ArbitrarySelfTypesLevel :: Basic )
1724
- if receiver_is_valid (
1725
- wfcx,
1726
- span,
1727
- receiver_ty,
1728
- self_ty,
1729
- Some ( ArbitrarySelfTypesLevel :: WithPointers ) ,
1730
- generics,
1731
- )
1732
- . is_ok ( ) =>
1688
+ return Err (
1689
+ if !arbitrary_self_types_pointers_enabled
1690
+ && receiver_is_valid ( wfcx, span, receiver_ty, self_ty, true , generics) . is_ok ( )
1733
1691
{
1734
1692
// Report error; would have worked with `arbitrary_self_types_pointers`.
1735
1693
feature_err (
@@ -1738,17 +1696,15 @@ fn check_method_receiver<'tcx>(
1738
1696
span,
1739
1697
format ! (
1740
1698
"`{receiver_ty}` cannot be used as the type of `self` without \
1741
- the `arbitrary_self_types_pointers` feature",
1699
+ the `arbitrary_self_types_pointers` feature",
1742
1700
) ,
1743
1701
)
1744
1702
. with_help ( fluent:: hir_analysis_invalid_receiver_ty_help)
1745
1703
. emit ( )
1746
- }
1747
- _ =>
1748
- // Report error; would not have worked with `arbitrary_self_types[_pointers]`.
1749
- {
1704
+ } else {
1705
+ // Report error; would not have worked with `arbitrary_self_types_pointers`.
1750
1706
match receiver_validity_err {
1751
- ReceiverValidityError :: DoesNotDeref if arbitrary_self_types_level . is_some ( ) => {
1707
+ ReceiverValidityError :: DoesNotDeref => {
1752
1708
let hint = match receiver_ty
1753
1709
. builtin_deref ( false )
1754
1710
. unwrap_or ( receiver_ty)
@@ -1762,18 +1718,12 @@ fn check_method_receiver<'tcx>(
1762
1718
1763
1719
tcx. dcx ( ) . emit_err ( errors:: InvalidReceiverTy { span, receiver_ty, hint } )
1764
1720
}
1765
- ReceiverValidityError :: DoesNotDeref => {
1766
- tcx. dcx ( ) . emit_err ( errors:: InvalidReceiverTyNoArbitrarySelfTypes {
1767
- span,
1768
- receiver_ty,
1769
- } )
1770
- }
1771
1721
ReceiverValidityError :: MethodGenericParamUsed => {
1772
1722
tcx. dcx ( ) . emit_err ( errors:: InvalidGenericReceiverTy { span, receiver_ty } )
1773
1723
}
1774
1724
}
1775
- }
1776
- } ) ;
1725
+ } ,
1726
+ ) ;
1777
1727
}
1778
1728
Ok ( ( ) )
1779
1729
}
@@ -1817,11 +1767,10 @@ fn receiver_is_valid<'tcx>(
1817
1767
span : Span ,
1818
1768
receiver_ty : Ty < ' tcx > ,
1819
1769
self_ty : Ty < ' tcx > ,
1820
- arbitrary_self_types_enabled : Option < ArbitrarySelfTypesLevel > ,
1770
+ arbitrary_self_types_pointers_enabled : bool ,
1821
1771
method_generics : & ty:: Generics ,
1822
1772
) -> Result < ( ) , ReceiverValidityError > {
1823
1773
let infcx = wfcx. infcx ;
1824
- let tcx = wfcx. tcx ( ) ;
1825
1774
let cause =
1826
1775
ObligationCause :: new ( span, wfcx. body_def_id , traits:: ObligationCauseCode :: MethodReceiver ) ;
1827
1776
@@ -1836,17 +1785,11 @@ fn receiver_is_valid<'tcx>(
1836
1785
1837
1786
confirm_type_is_not_a_method_generic_param ( receiver_ty, method_generics) ?;
1838
1787
1839
- let mut autoderef = Autoderef :: new ( infcx, wfcx. param_env , wfcx. body_def_id , span, receiver_ty) ;
1840
-
1841
- // The `arbitrary_self_types` feature allows custom smart pointer
1842
- // types to be method receivers, as identified by following the Receiver<Target=T>
1843
- // chain.
1844
- if arbitrary_self_types_enabled. is_some ( ) {
1845
- autoderef = autoderef. use_receiver_trait ( ) ;
1846
- }
1788
+ let mut autoderef = Autoderef :: new ( infcx, wfcx. param_env , wfcx. body_def_id , span, receiver_ty)
1789
+ . use_receiver_trait ( ) ;
1847
1790
1848
1791
// The `arbitrary_self_types_pointers` feature allows raw pointer receivers like `self: *const Self`.
1849
- if arbitrary_self_types_enabled == Some ( ArbitrarySelfTypesLevel :: WithPointers ) {
1792
+ if arbitrary_self_types_pointers_enabled {
1850
1793
autoderef = autoderef. include_raw_pointers ( ) ;
1851
1794
}
1852
1795
@@ -1869,58 +1812,12 @@ fn receiver_is_valid<'tcx>(
1869
1812
wfcx. register_obligations ( autoderef. into_obligations ( ) ) ;
1870
1813
return Ok ( ( ) ) ;
1871
1814
}
1872
-
1873
- // Without `feature(arbitrary_self_types)`, we require that each step in the
1874
- // deref chain implement `LegacyReceiver`.
1875
- if arbitrary_self_types_enabled. is_none ( ) {
1876
- let legacy_receiver_trait_def_id =
1877
- tcx. require_lang_item ( LangItem :: LegacyReceiver , Some ( span) ) ;
1878
- if !legacy_receiver_is_implemented (
1879
- wfcx,
1880
- legacy_receiver_trait_def_id,
1881
- cause. clone ( ) ,
1882
- potential_self_ty,
1883
- ) {
1884
- // We cannot proceed.
1885
- break ;
1886
- }
1887
-
1888
- // Register the bound, in case it has any region side-effects.
1889
- wfcx. register_bound (
1890
- cause. clone ( ) ,
1891
- wfcx. param_env ,
1892
- potential_self_ty,
1893
- legacy_receiver_trait_def_id,
1894
- ) ;
1895
- }
1896
1815
}
1897
1816
1898
1817
debug ! ( "receiver_is_valid: type `{:?}` does not deref to `{:?}`" , receiver_ty, self_ty) ;
1899
1818
Err ( ReceiverValidityError :: DoesNotDeref )
1900
1819
}
1901
1820
1902
- fn legacy_receiver_is_implemented < ' tcx > (
1903
- wfcx : & WfCheckingCtxt < ' _ , ' tcx > ,
1904
- legacy_receiver_trait_def_id : DefId ,
1905
- cause : ObligationCause < ' tcx > ,
1906
- receiver_ty : Ty < ' tcx > ,
1907
- ) -> bool {
1908
- let tcx = wfcx. tcx ( ) ;
1909
- let trait_ref = ty:: TraitRef :: new ( tcx, legacy_receiver_trait_def_id, [ receiver_ty] ) ;
1910
-
1911
- let obligation = Obligation :: new ( tcx, cause, wfcx. param_env , trait_ref) ;
1912
-
1913
- if wfcx. infcx . predicate_must_hold_modulo_regions ( & obligation) {
1914
- true
1915
- } else {
1916
- debug ! (
1917
- "receiver_is_implemented: type `{:?}` does not implement `LegacyReceiver` trait" ,
1918
- receiver_ty
1919
- ) ;
1920
- false
1921
- }
1922
- }
1923
-
1924
1821
fn check_variances_for_type_defn < ' tcx > (
1925
1822
tcx : TyCtxt < ' tcx > ,
1926
1823
item : & ' tcx hir:: Item < ' tcx > ,
0 commit comments