@@ -47,7 +47,7 @@ use rustc_middle::{bug, span_bug};
47
47
use rustc_session:: lint:: builtin:: AMBIGUOUS_ASSOCIATED_ITEMS ;
48
48
use rustc_span:: edit_distance:: find_best_match_for_name;
49
49
use rustc_span:: symbol:: { kw, Ident , Symbol } ;
50
- use rustc_span:: { sym , Span , DUMMY_SP } ;
50
+ use rustc_span:: { Span , DUMMY_SP } ;
51
51
use rustc_target:: spec:: abi;
52
52
use rustc_trait_selection:: traits:: wf:: object_region_bounds;
53
53
use rustc_trait_selection:: traits:: { self , ObligationCtxt } ;
@@ -559,7 +559,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
559
559
}
560
560
if let ty:: BoundConstness :: Const | ty:: BoundConstness :: ConstIfConst = constness
561
561
&& generics. has_self
562
- && !tcx. has_attr ( def_id, sym :: const_trait )
562
+ && !tcx. is_const_trait ( def_id)
563
563
{
564
564
let reported = tcx. dcx ( ) . emit_err ( crate :: errors:: ConstBoundForNonConstTrait {
565
565
span,
@@ -1847,19 +1847,13 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
1847
1847
path. segments [ ..path. segments . len ( ) - 2 ] . iter ( ) ,
1848
1848
GenericsArgsErrExtend :: None ,
1849
1849
) ;
1850
- // HACK: until we support `<Type as ~const Trait>`, assume all of them are.
1851
- let constness = if tcx. has_attr ( tcx. parent ( def_id) , sym:: const_trait) {
1852
- ty:: BoundConstness :: ConstIfConst
1853
- } else {
1854
- ty:: BoundConstness :: NotConst
1855
- } ;
1856
1850
self . lower_qpath (
1857
1851
span,
1858
1852
opt_self_ty,
1859
1853
def_id,
1860
1854
& path. segments [ path. segments . len ( ) - 2 ] ,
1861
1855
path. segments . last ( ) . unwrap ( ) ,
1862
- constness ,
1856
+ ty :: BoundConstness :: NotConst ,
1863
1857
)
1864
1858
}
1865
1859
Res :: PrimTy ( prim_ty) => {
0 commit comments